@@ -24,6 +24,7 @@ import { Timepicker } from './timepicker';
24
24
import { Toast } from './toasts' ;
25
25
import { Tooltip } from './tooltip' ;
26
26
import { Waves } from './waves' ;
27
+ import { Range } from './range' ;
27
28
28
29
export class M {
29
30
static version = '1.2.2' ;
@@ -117,6 +118,7 @@ export class M {
117
118
Forms . Init ( ) ;
118
119
Chips . Init ( ) ;
119
120
Waves . Init ( ) ;
121
+ Range . Init ( ) ;
120
122
}
121
123
122
124
//--- TODO: Remove!
@@ -153,7 +155,6 @@ export class M {
153
155
}
154
156
//---
155
157
156
-
157
158
static AutoInit ( context :Element = null ) {
158
159
let root = ! ! context ? context : document . body ;
159
160
let registry = {
@@ -174,7 +175,7 @@ export class M {
174
175
TapTarget : root . querySelectorAll ( '.tap-target:not(.no-autoinit)' ) ,
175
176
Timepicker : root . querySelectorAll ( '.timepicker:not(.no-autoinit)' ) ,
176
177
Tooltip : root . querySelectorAll ( '.tooltipped:not(.no-autoinit)' ) ,
177
- FloatingActionButton : root . querySelectorAll ( '.fixed-action-btn:not(.no-autoinit)' )
178
+ FloatingActionButton : root . querySelectorAll ( '.fixed-action-btn:not(.no-autoinit)' ) ,
178
179
} ;
179
180
M . Autocomplete . init ( registry . Autocomplete , null ) ;
180
181
M . Carousel . init ( registry . Carousel , null ) ;
@@ -193,7 +194,7 @@ export class M {
193
194
M . TapTarget . init ( registry . TapTarget , null ) ;
194
195
M . Timepicker . init ( registry . Timepicker , null ) ;
195
196
M . Tooltip . init ( registry . Tooltip , null ) ;
196
- M . FloatingActionButton . init ( registry . FloatingActionButton , null ) ;
197
+ M . FloatingActionButton . init ( registry . FloatingActionButton , null ) ;
197
198
}
198
199
199
200
static objectSelectorString ( obj : any ) : string {
0 commit comments