Skip to content
This repository was archived by the owner on May 29, 2019. It is now read-only.

Commit 44e7d77

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

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Diff for: src/datepicker/test/datepicker.spec.js

+1-1
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);

Diff for: src/modal/test/modal.spec.js

+4-4
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)