Skip to content

Commit 44e7d77

Browse files
chrisirhcpkozlowski-opensource
authored andcommitted
chore(all): clean up trailing whitespace
jshint is failing. Closes angular-ui#2147
1 parent 0b31e86 commit 44e7d77

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/datepicker/test/datepicker.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1356,7 +1356,7 @@ describe('datepicker directive', function () {
13561356
var wrapElement = $compile('<div><input ng-model="date" datepicker-popup="dd.MM.yyyy"><div>')($rootScope);
13571357
$rootScope.$digest();
13581358
assignElements(wrapElement);
1359-
1359+
13601360
changeInputValueTo(inputEl, '11.08.2013');
13611361
expect($rootScope.date.getFullYear()).toEqual(2013);
13621362
expect($rootScope.date.getMonth()).toEqual(7);

src/modal/test/modal.spec.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -487,22 +487,22 @@ describe('$modal', function () {
487487
});
488488

489489
describe('size', function () {
490-
490+
491491
it('should support creating small modal dialogs', function () {
492492
open({
493493
template: '<div>Small modal dialog</div>',
494494
size: 'sm'
495495
});
496-
496+
497497
expect($document.find('div.modal-dialog')).toHaveClass('modal-sm');
498498
});
499-
499+
500500
it('should support creating large modal dialogs', function () {
501501
open({
502502
template: '<div>Large modal dialog</div>',
503503
size: 'lg'
504504
});
505-
505+
506506
expect($document.find('div.modal-dialog')).toHaveClass('modal-lg');
507507
});
508508
});

0 commit comments

Comments
 (0)