diff options
Diffstat (limited to 'extension/content_scripts')
| -rw-r--r-- | extension/content_scripts/notify.js | 2 | ||||
| -rw-r--r-- | extension/content_scripts/notify.ts | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/extension/content_scripts/notify.js b/extension/content_scripts/notify.js index 7791f86e1..e99dabc32 100644 --- a/extension/content_scripts/notify.js +++ b/extension/content_scripts/notify.js @@ -14,11 +14,11 @@ TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/> */ /// <reference path="../lib/decl/chrome/chrome.d.ts" /> +"use strict"; /** * Script that is injected into (all!) pages to allow them * to interact with the GNU Taler wallet via DOM Events. */ -"use strict"; // Make sure we don't pollute the namespace too much. var TalerNotify; (function (TalerNotify) { diff --git a/extension/content_scripts/notify.ts b/extension/content_scripts/notify.ts index c2dd5ab64..47f57b6a0 100644 --- a/extension/content_scripts/notify.ts +++ b/extension/content_scripts/notify.ts @@ -16,14 +16,14 @@ /// <reference path="../lib/decl/chrome/chrome.d.ts" /> +"use strict"; + + /** * Script that is injected into (all!) pages to allow them * to interact with the GNU Taler wallet via DOM Events. */ - -"use strict"; - // Make sure we don't pollute the namespace too much. namespace TalerNotify { const PROTOCOL_VERSION = 1; |
