File tree Expand file tree Collapse file tree 8 files changed +19
-38
lines changed Expand file tree Collapse file tree 8 files changed +19
-38
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "plugins": ["plugins/markdown"],
2
+ "plugins": ["plugins/markdown", "build/jsdoc/nostrict" ],
3
3
"markdown": {
4
4
"parser": "gfm",
5
5
"hardwrap": true,
Original file line number Diff line number Diff line change 1
1
{
2
2
"calendar" : {
3
- "src" : [" apps/calendar/js/**/*.js" ,
4
- " !apps/calendar/js/controllers/time.js" ,
5
- " !apps/calendar/js/models/account.js" ,
6
- " !apps/calendar/js/models/calendar.js" ,
7
- " !apps/calendar/js/models/event.js" ,
8
- " !apps/calendar/js/views/month_child.js"
9
- ],
3
+ "src" : [" apps/calendar/js/**/*.js" ],
10
4
"options" : {
11
5
"destination" : " docs/calendar"
12
6
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"email" : {
3
- "src" : [" apps/email/js/**/*.js" ,
4
- " !apps/email/js/ext/mailapi/activesync/configurator.js"
5
- ],
3
+ "src" : [" apps/email/js/**/*.js" ],
6
4
"options" : {
7
5
"destination" : " docs/email"
8
6
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"keyboard" : {
3
3
"src" : [" apps/keyboard/js/**/*.js" ,
4
- " !apps/keyboard/js/render.js"
4
+ " !apps/keyboard/js/render.js" ,
5
+ " !apps/keyboard/js/imes/vietnamese/vietnamese.js"
5
6
],
6
7
"options" : {
7
8
"destination" : " docs/keyboard"
Original file line number Diff line number Diff line change 1
1
{
2
2
"music" : {
3
- "src" : [" apps/music/js/**/*.js" ,
4
- " !apps/music/js/Player.js" ,
5
- " !apps/music/js/music.js"
6
- ],
3
+ "src" : [" apps/music/js/**/*.js" ],
7
4
"options" : {
8
5
"destination" : " docs/music"
9
6
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"settings" : {
3
3
"src" : [" apps/settings/README.md" ,
4
- " apps/settings/js/**/*.js" ,
5
- " !apps/settings/js/carrier.js" ,
6
- " !apps/settings/js/mvvm/views.js" ,
7
- " !apps/settings/js/settings.js" ,
8
- " !apps/settings/js/wifi.js" ,
9
- " !apps/settings/js/modules/mvvm/list_view.js" ,
10
- " !apps/settings/js/panels/feedback_send/feedback_send.js" ,
11
- " !apps/settings/js/panels/keyboard/core.js" ,
12
- " !apps/settings/js/panels/keyboard_add_layouts/core.js" ,
13
- " !apps/settings/js/panels/keyboard_enabled_layouts/core.js"
4
+ " apps/settings/js/**/*.js"
14
5
],
15
6
"options" : {
16
7
"destination" : " docs/settings"
Original file line number Diff line number Diff line change 1
1
{
2
2
"system" : {
3
3
"src" : [" apps/system/js/**/*.js" ,
4
- " !apps/system/js/airplane_mode.js" ,
5
- " !apps/system/js/sound_manager.js" ,
6
- " !apps/system/js/title.js" ,
7
- " !apps/system/js/value_selector/date_picker.js" ,
8
- " !apps/system/js/value_selector/spin_date_picker.js" ,
9
- " !apps/system/js/lockscreen.js" ,
10
- " !apps/system/js/edge_swipe_detector.js" ,
11
- " !apps/system/js/stack_manager.js" ,
12
- " !apps/system/js/lockscreen_window.js" ,
13
- " !apps/system/js/lockscreen_window_manager.js" ,
14
- " !apps/system/js/media_playback.js" ,
15
- " !apps/system/js/radio.js"
4
+ " !apps/system/js/lockscreen_window_manager.js"
16
5
],
17
6
"options" : {
18
7
"destination" : " docs/system"
Original file line number Diff line number Diff line change
1
+ /*global exports*/
2
+ /*
3
+ * plugin to remove strict mode before parsing to prevent getter/setter
4
+ * parsing error.
5
+ */
6
+ 'use strict' ;
7
+ exports . handlers = {
8
+ beforeParse : function ( e ) {
9
+ e . source = e . source . replace ( / [ ' " ] u s e s t r i c t [ ' " ] / g, '//"use strict"' ) ;
10
+ }
11
+ } ;
You can’t perform that action at this time.
0 commit comments