summaryrefslogtreecommitdiff
path: root/melodactyl/content
diff options
context:
space:
mode:
authorDoug Kearns <dougkearns@gmail.com>2010-10-09 21:42:37 +1100
committerDoug Kearns <dougkearns@gmail.com>2010-10-09 21:42:37 +1100
commit86efd0bb6a93fb794a3fa7f861bd738aa64a0873 (patch)
treed17302b0133316f902e22111de4b03dcb35bcf1b /melodactyl/content
parentd64eab8f2acdd1925ddad1ddeef585a807965c66 (diff)
downloadpentadactyl-86efd0bb6a93fb794a3fa7f861bd738aa64a0873.tar.gz
Add missing "use strict" pragmas.
Diffstat (limited to 'melodactyl/content')
-rw-r--r--melodactyl/content/config.js2
-rw-r--r--melodactyl/content/library.js2
-rw-r--r--melodactyl/content/player.js2
3 files changed, 3 insertions, 3 deletions
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() {