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

Commit d49dba1

Browse files
committed
Fix spacing
1 parent fdae853 commit d49dba1

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/common.css

+4-4
Original file line numberDiff line numberDiff line change
@@ -370,10 +370,10 @@ body > .ui-select-bootstrap.open {
370370

371371
/* Spinner */
372372
.ui-select-refreshing.glyphicon {
373-
position: absolute;
374-
right: 0;
375-
padding: 8px 27px;
376-
}
373+
position: absolute;
374+
right: 0;
375+
padding: 8px 27px;
376+
}
377377

378378
@-webkit-keyframes ui-select-spin {
379379
0% {

test/select.spec.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -3387,18 +3387,18 @@ describe('ui-select tests', function () {
33873387
el = compileTemplate(
33883388
'<ui-select ng-model="selection.selected" theme="' + theme + '"' + multi + '> \
33893389
<ui-select-match placeholder="Pick one...">{{$select.selected.name}}</ui-select-match> \
3390-
<ui-select-header>{{'+ selectedStr +'.name}}</ui-select-header>\
3390+
<ui-select-header>{{' + selectedStr + '.name}}</ui-select-header>\
33913391
<ui-select-choices repeat="person in people | filter: $select.search"> \
33923392
<div ng-bind-html="person.name | highlight: $select.search"></div> \
33933393
<div ng-bind-html="person.email | highlight: $select.search"></div> \
33943394
</ui-select-choices> \
3395-
<ui-select-footer>{{'+ selectedStr +'.name}}</ui-select-footer> \
3395+
<ui-select-footer>{{' + selectedStr + '.name}}</ui-select-footer> \
33963396
</ui-select>'
33973397
);
33983398
}
33993399

3400-
['selectize', 'bootstrap', 'select2'].forEach(function(theme){
3401-
describe(theme +' theme', function () {
3400+
['selectize', 'bootstrap', 'select2'].forEach(function (theme) {
3401+
describe(theme + ' theme', function () {
34023402
it('should show the header', function () {
34033403
setupSelectComponent(theme);
34043404
expect($(el).find('.ui-select-header').text().trim()).toBe(scope.selection.selected.name);

0 commit comments

Comments
 (0)