fixed lint warnings

This commit is contained in:
Igor Minar 2010-10-04 09:00:09 -07:00
parent 328ff6c926
commit 81052d4a62
3 changed files with 3 additions and 3 deletions

View file

@ -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);

View file

@ -92,4 +92,4 @@ describe('parseKeyValue', function() {
expect(parseKeyValue('flag1&key=value&flag2')).
toEqual({flag1: true, key: 'value', flag2: true});
});
})
});

View file

@ -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(){