aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/apis.js2
-rw-r--r--src/sanitizer.js2
-rw-r--r--test/ApiSpecs.js2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/apis.js b/src/apis.js
index 65070505..d6e906ab 100644
--- a/src/apis.js
+++ b/src/apis.js
@@ -672,7 +672,7 @@ var angularArray = {
}
};
-var R_ISO8061_STR = /^(\d{4})-(\d\d)-(\d\d)(?:T(\d\d)(?:\:(\d\d)(?:\:(\d\d)(?:\.(\d{3}))?)?)?Z)?$/
+var R_ISO8061_STR = /^(\d{4})-(\d\d)-(\d\d)(?:T(\d\d)(?:\:(\d\d)(?:\:(\d\d)(?:\.(\d{3}))?)?)?Z)?$/;
var angularString = {
'quote':function(string) {
diff --git a/src/sanitizer.js b/src/sanitizer.js
index d63cf69d..61b61c90 100644
--- a/src/sanitizer.js
+++ b/src/sanitizer.js
@@ -189,7 +189,7 @@ function htmlParser( html, handler ) {
stack.length = pos;
}
}
-};
+}
/**
* @param str 'key1,key2,...'
diff --git a/test/ApiSpecs.js b/test/ApiSpecs.js
index e2a68a61..0383a457 100644
--- a/test/ApiSpecs.js
+++ b/test/ApiSpecs.js
@@ -141,7 +141,7 @@ describe('api', function(){
expect(angular.Array.limitTo(items, 'undefined')).toEqual([]);
expect(angular.Array.limitTo(items, null)).toEqual([]);
expect(angular.Array.limitTo(items, undefined)).toEqual([]);
- })
+ });
});