[Pkg-mozext-commits] [greasemonkey] 02/06: Add missing semicolons.

David Prévot taffit at moszumanska.debian.org
Mon Jan 13 01:12:29 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository greasemonkey.

commit ee71695dfd6a2c91b2b0202e6f12e550a1f21818
Author: Anthony Lieuallen <arantius at gmail.com>
Date:   Fri Jan 10 12:16:07 2014 -0500

    Add missing semicolons.
---
 content/config.js   | 4 ++--
 modules/miscapis.js | 2 +-
 modules/script.js   | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/content/config.js b/content/config.js
index 431699e..95659eb 100644
--- a/content/config.js
+++ b/content/config.js
@@ -143,7 +143,7 @@ Config.prototype.install = function(script, oldScript, tempDir) {
   }
 
   script._dependhash = GM_util.sha1(script._rawMeta);
-  script._installTime = new Date().getTime()
+  script._installTime = new Date().getTime();
 
   this._scripts.push(script);
 
@@ -297,4 +297,4 @@ Config.prototype._migrateScriptValsToStorage = function() {
       prefsVals.deleteValue(name);
     }
   };
-}
+};
diff --git a/modules/miscapis.js b/modules/miscapis.js
index 7b178df..3734f16 100644
--- a/modules/miscapis.js
+++ b/modules/miscapis.js
@@ -173,7 +173,7 @@ GM_ScriptStorage.prototype.getStats = function() {
   }
 
   return stats;
-}
+};
 
 
 // \\ // \\ // \\ // \\ // \\ // \\ // \\ // \\ // \\ // \\ // \\ // \\ // \\ //
diff --git a/modules/script.js b/modules/script.js
index 93a79ba..5d2d29b 100644
--- a/modules/script.js
+++ b/modules/script.js
@@ -483,7 +483,7 @@ Script.prototype.info = function() {
     },
     'scriptMetaStr': extractMeta(this.textContent),
     'scriptSource': this.textContent,
-  }
+  };
 };
 
 Script.prototype.isModified = function() {

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/greasemonkey.git



More information about the Pkg-mozext-commits mailing list