aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Minar2010-10-04 09:00:09 -0700
committerIgor Minar2010-10-04 09:00:09 -0700
commit81052d4a6269b25885bb3d9642fdf399cc1684e6 (patch)
tree2685b57a92f1dad846426619a5d87521a5655eb4
parent328ff6c9265a16ae51cb01a8779445819f4118a1 (diff)
downloadangular.js-81052d4a6269b25885bb3d9642fdf399cc1684e6.tar.bz2
fixed lint warnings
-rw-r--r--src/jqLite.js2
-rw-r--r--test/AngularSpec.js2
-rw-r--r--test/directivesSpec.js2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/jqLite.js b/src/jqLite.js
index 64e73497..7a1c2dc8 100644
--- a/src/jqLite.js
+++ b/src/jqLite.js
@@ -105,7 +105,7 @@ JQLite.prototype = {
if (!event.stopPropagation) {
event.stopPropagation = function() {
event.cancelBubble = true; //ie
- }
+ };
}
foreach(eventHandler.fns, function(fn){
fn.call(self, event);
diff --git a/test/AngularSpec.js b/test/AngularSpec.js
index 725e8ea0..1ccdf1c3 100644
--- a/test/AngularSpec.js
+++ b/test/AngularSpec.js
@@ -92,4 +92,4 @@ describe('parseKeyValue', function() {
expect(parseKeyValue('flag1&key=value&flag2')).
toEqual({flag1: true, key: 'value', flag2: true});
});
-})
+});
diff --git a/test/directivesSpec.js b/test/directivesSpec.js
index 72f7b2f2..10400ead 100644
--- a/test/directivesSpec.js
+++ b/test/directivesSpec.js
@@ -181,7 +181,7 @@ describe("directives", function(){
innerDiv.trigger('click');
expect(scope.$get('outer')).not.toBeDefined();
expect(scope.$get('inner')).toEqual(true);
- })
+ });
});
it('should ng:class', function(){