diff options
author | Doug Kearns <dougkearns@gmail.com> | 2010-10-09 21:42:37 +1100 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2010-10-09 21:42:37 +1100 |
commit | 86efd0bb6a93fb794a3fa7f861bd738aa64a0873 (patch) | |
tree | d17302b0133316f902e22111de4b03dcb35bcf1b | |
parent | d64eab8f2acdd1925ddad1ddeef585a807965c66 (diff) | |
download | pentadactyl-86efd0bb6a93fb794a3fa7f861bd738aa64a0873.tar.gz |
Add missing "use strict" pragmas.
-rw-r--r-- | common/content/abbreviations.js | 2 | ||||
-rw-r--r-- | melodactyl/content/config.js | 2 | ||||
-rw-r--r-- | melodactyl/content/library.js | 2 | ||||
-rw-r--r-- | melodactyl/content/player.js | 2 | ||||
-rw-r--r-- | pentadactyl/content/config.js | 1 | ||||
-rw-r--r-- | teledactyl/content/addressbook.js | 1 | ||||
-rw-r--r-- | teledactyl/content/compose/compose.js | 1 | ||||
-rw-r--r-- | teledactyl/content/config.js | 1 | ||||
-rw-r--r-- | teledactyl/content/mail.js | 1 |
9 files changed, 9 insertions, 4 deletions
diff --git a/common/content/abbreviations.js b/common/content/abbreviations.js index 28a900d4..f2171090 100644 --- a/common/content/abbreviations.js +++ b/common/content/abbreviations.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"; /** @scope modules */ 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() { diff --git a/pentadactyl/content/config.js b/pentadactyl/content/config.js index 81a314d9..507741d8 100644 --- a/pentadactyl/content/config.js +++ b/pentadactyl/content/config.js @@ -4,6 +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"; const Config = Module("config", ConfigBase, { get visualbellWindow() getBrowser().mPanelContainer, diff --git a/teledactyl/content/addressbook.js b/teledactyl/content/addressbook.js index 00401853..48bbdaa2 100644 --- a/teledactyl/content/addressbook.js +++ b/teledactyl/content/addressbook.js @@ -2,6 +2,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 Addressbook = Module("addressbook", { init: function () { diff --git a/teledactyl/content/compose/compose.js b/teledactyl/content/compose/compose.js index ff73971f..90293701 100644 --- a/teledactyl/content/compose/compose.js +++ b/teledactyl/content/compose/compose.js @@ -2,6 +2,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"; function Compose() { //{{{ //////////////////////////////////////////////////////////////////////////////// diff --git a/teledactyl/content/config.js b/teledactyl/content/config.js index d2183827..e47b5815 100644 --- a/teledactyl/content/config.js +++ b/teledactyl/content/config.js @@ -2,6 +2,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 Config = Module("config", ConfigBase, { init: function init() { diff --git a/teledactyl/content/mail.js b/teledactyl/content/mail.js index b13799d8..518c9bd6 100644 --- a/teledactyl/content/mail.js +++ b/teledactyl/content/mail.js @@ -2,6 +2,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 Mail = Module("mail", { init: function () { |