From 86efd0bb6a93fb794a3fa7f861bd738aa64a0873 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Sat, 9 Oct 2010 21:42:37 +1100 Subject: Add missing "use strict" pragmas. --- melodactyl/content/config.js | 2 +- melodactyl/content/library.js | 2 +- melodactyl/content/player.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'melodactyl/content') diff --git a/melodactyl/content/config.js b/melodactyl/content/config.js index 01f2a432..21594d57 100644 --- a/melodactyl/content/config.js +++ b/melodactyl/content/config.js @@ -4,7 +4,7 @@ // // This work is licensed for reuse under an MIT license. Details are // given in the LICENSE.txt file included with this file. - +"use strict"; Components.utils.import("resource://gre/modules/utils.js"); // XXX diff --git a/melodactyl/content/library.js b/melodactyl/content/library.js index bd626461..30f1dfe1 100644 --- a/melodactyl/content/library.js +++ b/melodactyl/content/library.js @@ -3,7 +3,7 @@ // // This work is licensed for reuse under an MIT license. Details are // given in the LICENSE.txt file included with this file. - +"use strict"; // TODO: flesh this out const Library = Module("library", { diff --git a/melodactyl/content/player.js b/melodactyl/content/player.js index 1d223fde..1d04f904 100644 --- a/melodactyl/content/player.js +++ b/melodactyl/content/player.js @@ -3,7 +3,7 @@ // // This work is licensed for reuse under an MIT license. Details are // given in the LICENSE.txt file included with this file. - +"use strict"; const Player = Module("player", { init: function init() { -- cgit v1.2.3