mdb-ui-kit/docs/assets/js/src/application.js

22 lines
388 B
JavaScript
Raw Normal View History

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