File tree 2 files changed +5
-0
lines changed
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 14
14
PWA_APP_BACKGROUND_COLOR = getattr (settings , 'PWA_APP_BACKGROUND_COLOR' , '#fff' )
15
15
PWA_APP_DISPLAY = getattr (settings , 'PWA_APP_DISPLAY' , 'standalone' )
16
16
PWA_APP_SCOPE = getattr (settings , 'PWA_APP_SCOPE' , '/' )
17
+ PWA_APP_DEBUG_MODE = getattr (settings , 'PWA_APP_DEBUG_MODE' , True )
17
18
PWA_APP_ORIENTATION = getattr (settings , 'PWA_APP_ORIENTATION' , 'any' )
18
19
PWA_APP_START_URL = getattr (settings , 'PWA_APP_START_URL' , '/' )
19
20
PWA_APP_FETCH_URL = getattr (settings , 'PWA_APP_FETCH_URL' , '/' )
Original file line number Diff line number Diff line change 39
39
scope : '{{ PWA_APP_SCOPE }}'
40
40
} ) . then ( function ( registration ) {
41
41
// Registration was successful
42
+ { % if PWA_APP_DEBUG_MODE % }
42
43
console . log ( 'django-pwa: ServiceWorker registration successful with scope: ' , registration . scope ) ;
44
+ { % endif % }
43
45
} , function ( err ) {
44
46
// registration failed :(
47
+ { % if PWA_APP_DEBUG_MODE % }
45
48
console . log ( 'django-pwa: ServiceWorker registration failed: ' , err ) ;
49
+ { % endif % }
46
50
} ) ;
47
51
}
48
52
</ script >
You can’t perform that action at this time.
0 commit comments