aboutsummaryrefslogtreecommitdiffstats
path: root/src/services.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/services.js')
-rw-r--r--src/services.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/services.js b/src/services.js
index 41f179e9..31c5e7af 100644
--- a/src/services.js
+++ b/src/services.js
@@ -109,7 +109,7 @@ angularService('$exceptionHandler', function($log){
}, {inject:['$log']});
angularService("$hover", function(browser, document) {
- var tooltip, self = this, error, width = 300, arrowWidth = 10, body = jqLite(document[0].body);;
+ var tooltip, self = this, error, width = 300, arrowWidth = 10, body = jqLite(document[0].body);
browser.hover(function(element, show){
if (show && (error = element.attr(NG_EXCEPTION) || element.attr(NG_VALIDATION_ERROR))) {
if (!tooltip) {
@@ -345,7 +345,7 @@ angularService('$xhr.bulk', function($xhr, $error, $log){
}, {inject:['$xhr', '$xhr.error', '$log']});
angularService('$xhr.cache', function($xhr){
- var inflight = {}, self = this;;
+ var inflight = {}, self = this;
function cache(method, url, post, callback, verifyCache){
if (isFunction(post)) {
callback = post;
@@ -418,7 +418,7 @@ angularService('$cookies', function($browser) {
//delete cookies[name];
}
}
- };
+ }
}, {inject: ['$browser']});
@@ -455,4 +455,4 @@ angularService('$sessionStore', function($store) {
return new SessionStore();
-}, {inject: ['$cookies']}); \ No newline at end of file
+}, {inject: ['$cookies']});