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

Commit

Permalink
chore(all): clean up trailing whitespace
Browse files Browse the repository at this point in the history
jshint is failing.

Closes #2147
  • Loading branch information
chrisirhc authored and pkozlowski-opensource committed May 5, 2014
1 parent 0b31e86 commit 44e7d77
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/datepicker/test/datepicker.spec.js
Expand Up @@ -1356,7 +1356,7 @@ describe('datepicker directive', function () {
var wrapElement = $compile('<div><input ng-model="date" datepicker-popup="dd.MM.yyyy"><div>')($rootScope);
$rootScope.$digest();
assignElements(wrapElement);

changeInputValueTo(inputEl, '11.08.2013');
expect($rootScope.date.getFullYear()).toEqual(2013);
expect($rootScope.date.getMonth()).toEqual(7);
Expand Down
8 changes: 4 additions & 4 deletions src/modal/test/modal.spec.js
Expand Up @@ -487,22 +487,22 @@ describe('$modal', function () {
});

describe('size', function () {

it('should support creating small modal dialogs', function () {
open({
template: '<div>Small modal dialog</div>',
size: 'sm'
});

expect($document.find('div.modal-dialog')).toHaveClass('modal-sm');
});

it('should support creating large modal dialogs', function () {
open({
template: '<div>Large modal dialog</div>',
size: 'lg'
});

expect($document.find('div.modal-dialog')).toHaveClass('modal-lg');
});
});
Expand Down

0 comments on commit 44e7d77

Please sign in to comment.