Skip to content

Commit de2b276

Browse files
committed
Fix spacing
1 parent f65bad1 commit de2b276

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/common.css

Lines changed: 4 additions & 4 deletions
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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3402,18 +3402,18 @@ describe('ui-select tests', function () {
34023402
el = compileTemplate(
34033403
'<ui-select ng-model="selection.selected" theme="' + theme + '"' + multi + '> \
34043404
<ui-select-match placeholder="Pick one...">{{$select.selected.name}}</ui-select-match> \
3405-
<ui-select-header>{{'+ selectedStr +'.name}}</ui-select-header>\
3405+
<ui-select-header>{{' + selectedStr + '.name}}</ui-select-header>\
34063406
<ui-select-choices repeat="person in people | filter: $select.search"> \
34073407
<div ng-bind-html="person.name | highlight: $select.search"></div> \
34083408
<div ng-bind-html="person.email | highlight: $select.search"></div> \
34093409
</ui-select-choices> \
3410-
<ui-select-footer>{{'+ selectedStr +'.name}}</ui-select-footer> \
3410+
<ui-select-footer>{{' + selectedStr + '.name}}</ui-select-footer> \
34113411
</ui-select>'
34123412
);
34133413
}
34143414

3415-
['selectize', 'bootstrap', 'select2'].forEach(function(theme){
3416-
describe(theme +' theme', function () {
3415+
['selectize', 'bootstrap', 'select2'].forEach(function (theme) {
3416+
describe(theme + ' theme', function () {
34173417
it('should show the header', function () {
34183418
setupSelectComponent(theme);
34193419
expect($(el).find('.ui-select-header').text().trim()).toBe(scope.selection.selected.name);

0 commit comments

Comments
 (0)