mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-20 16:30:26 +00:00
fixed lint warnings
This commit is contained in:
parent
328ff6c926
commit
81052d4a62
3 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -92,4 +92,4 @@ describe('parseKeyValue', function() {
|
|||
expect(parseKeyValue('flag1&key=value&flag2')).
|
||||
toEqual({flag1: true, key: 'value', flag2: true});
|
||||
});
|
||||
})
|
||||
});
|
||||
|
|
|
|||
|
|
@ -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(){
|
||||
|
|
|
|||
Loading…
Reference in a new issue