2015-12-04 04:09:01 +03:00
|
|
|
import Style from './style'
|
2015-11-20 00:58:21 +03:00
|
|
|
|
2015-12-04 04:09:01 +03:00
|
|
|
class Application {
|
2015-11-20 00:58:21 +03:00
|
|
|
|
2015-12-04 04:09:01 +03:00
|
|
|
constructor() {
|
|
|
|
}
|
2015-11-20 00:58:21 +03:00
|
|
|
|
2015-12-04 04:09:01 +03:00
|
|
|
displayTypographyProperties() {
|
|
|
|
Style.displayFontSizeWeightColor('.bd-example-type td > *:not(.type-info)', ($element) => {
|
|
|
|
return $element.closest('tr').find('td.type-info')
|
2015-11-26 01:01:18 +03:00
|
|
|
})
|
2015-12-04 04:09:01 +03:00
|
|
|
}
|
|
|
|
}
|
2015-11-26 01:01:18 +03:00
|
|
|
|
2015-12-04 04:09:01 +03:00
|
|
|
$(() => {
|
|
|
|
let app = new Application()
|
|
|
|
app.displayTypographyProperties()
|
2015-11-20 00:58:21 +03:00
|
|
|
|
2015-12-04 04:09:01 +03:00
|
|
|
// $.bootstrapMaterialDesign()
|
2015-11-20 00:58:21 +03:00
|
|
|
|
2015-12-04 04:09:01 +03:00
|
|
|
})
|