Skip to content
This repository was archived by the owner on Dec 12, 2021. It is now read-only.

Commit 10440e6

Browse files
committed
Changed debug info notification detail text
1 parent ef07041 commit 10440e6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/snippet-injector.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ export default {
9696
if(window.localStorage.getItem('snippet-injector-debug') === 'true') {
9797
if(window.localStorage.getItem('snippet-injector-debug-time') === 'true') {
9898
window.localStorage.setItem('snippet-injector-debug-time',false.toString());
99-
atom.notifications.addInfo('Disabled timings debug.', {detail: 'Reload the window (with Ctrl+Shift+F5 e.g.) to let the changes take effect.'});
99+
atom.notifications.addInfo('Disabled timings debug.', {detail: 'Reload the window (Ctrl+Shift+F5) to let the changes take effect.'});
100100
} else {
101101
window.localStorage.setItem('snippet-injector-debug-time',true.toString());
102-
atom.notifications.addInfo('Enabled timings debug.', {detail: 'Reload the window (with Ctrl+Shift+F5 e.g.) to let the changes take effect.'});
102+
atom.notifications.addInfo('Enabled timings debug.', {detail: 'Reload the window (Ctrl+Shift+F5) to let the changes take effect.'});
103103
}
104104
} else {
105105
atom.notifications.addWarning('Cannot toggle debug mode since it is disabled.', null);
@@ -110,10 +110,10 @@ export default {
110110
if(window.localStorage.getItem('snippet-injector-debug') === 'true') {
111111
if(window.localStorage.getItem('snippet-injector-debug-objl') === 'true') {
112112
window.localStorage.setItem('snippet-injector-debug-objl',false.toString());
113-
atom.notifications.addInfo('Disabled object debug.', {detail: 'Reload the window (with Ctrl+Shift+F5 e.g.) to let the changes take effect.'});
113+
atom.notifications.addInfo('Disabled object debug.', {detail: 'Reload the window (Ctrl+Shift+F5) to let the changes take effect.'});
114114
} else {
115115
window.localStorage.setItem('snippet-injector-debug-objl',true.toString());
116-
atom.notifications.addInfo('Enabled object debug.', {detail: 'Reload the window (with Ctrl+Shift+F5 e.g.) to let the changes take effect.'});
116+
atom.notifications.addInfo('Enabled object debug.', {detail: 'Reload the window (Ctrl+Shift+F5) to let the changes take effect.'});
117117
}
118118
} else {
119119
atom.notifications.addWarning('Cannot toggle debug mode since it is disabled.', null);

0 commit comments

Comments
 (0)