chore: fix linter errororororors

This commit is contained in:
Brandy Carney
2016-05-31 18:51:21 -04:00
parent e9d0c4569f
commit d7a6980112
3 changed files with 6 additions and 4 deletions

View File

@ -17,7 +17,7 @@ $range-ios-bar-active-background-color: color($colors-ios, primary) !defau
$range-ios-knob-width: 28px !default;
$range-ios-knob-height: $range-ios-knob-width !default;
$range-ios-knob-box-shadow: 0 3px 1px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.13), 0 0 0 1px rgba(0, 0, 0, 0.02) !default;
$range-ios-knob-box-shadow: 0 3px 1px rgba(0, 0, 0, .1), 0 4px 8px rgba(0, 0, 0, .13), 0 0 0 1px rgba(0, 0, 0, .02) !default;
$range-ios-knob-border-radius: 50% !default;
$range-ios-knob-background-color: #fff !default;

View File

@ -109,11 +109,12 @@ ion-range {
.range-knob {
position: absolute;
z-index: 2;
top: ($range-md-hit-height / 2) - ($range-md-knob-height / 2) + ($range-md-bar-height / 2);
left: ($range-md-hit-width / 2) - ($range-md-knob-width / 2);
z-index: 2;
width: $range-md-knob-width;
height: $range-md-knob-height;
@ -126,10 +127,11 @@ ion-range {
.range-tick {
position: absolute;
z-index: 1;
top: ($range-md-hit-height / 2) - ($range-md-tick-height / 2) + ($range-md-bar-height / 2);
z-index: 1;
margin-left: ($range-md-tick-width / 2) * -1;
width: $range-md-tick-width;

View File

@ -39,7 +39,7 @@ export function ionicBootstrap(appRootComponent: any, customProviders?: Array<an
export function ionicPostBootstrap(ngComponentRef: ComponentRef<any>): ComponentRef<any> {
//ngComponentRef.injector.get(TapClick);
// ngComponentRef.injector.get(TapClick);
let app: App = ngComponentRef.injector.get(App);
app.setAppInjector(ngComponentRef.injector);