Files
Brandy Carney fc819dd9c4 feat(range): add ability to add labels to the left/right of range
using `range-left` and `range-right` inside of `ion-range` will place
the element to the left or right of the range.

references #5422
2016-05-31 20:11:09 -04:00

19 lines
356 B
TypeScript

import {Component} from '@angular/core';
import {ionicBootstrap} from 'ionic-angular';
@Component({
templateUrl: 'main.html'
})
class ApiDemoApp {
brightness: number = 20;
saturation: number = 0;
warmth: number = 1300;
structure: any = {lower: 33, upper: 60};
onChange(ev) {
console.log("Changed", ev);
}
}
ionicBootstrap(ApiDemoApp);