File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
examples/sites/playground Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import GitHub from './icons/Github.vue'
1212import Share from './icons/Share.vue'
1313
1414const VERSION = 'tiny-vue-version-3.19'
15- const NOTIFY = 'tiny-vue-playground-notify'
15+ const NOTIFY_KEY = 'tiny-vue-playground-notify'
1616const LAYOUT = 'playground-layout'
1717const LAYOUT_REVERSE = 'playground-layout-reverse'
1818
@@ -41,10 +41,10 @@ const fileDelimiter = cdnHost.includes('npmmirror') ? 'files/' : ''
4141
4242let notify
4343const showNotify = () => {
44- if (localStorage.getItem(NOTIFY ) !== 'true' && !notify) {
44+ if (localStorage.getItem(NOTIFY_KEY ) !== 'true' && !notify) {
4545 const muteNotify = () => {
4646 notify.close()
47- localStorage.setItem(NOTIFY , true)
47+ localStorage.setItem(NOTIFY_KEY , true)
4848 }
4949 notify = Notify({
5050 type: 'info',
You can’t perform that action at this time.
0 commit comments