mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2025-03-13 00:05:47 +03:00
22 lines
388 B
JavaScript
22 lines
388 B
JavaScript
import Style from './style'
|
|
|
|
class Application {
|
|
|
|
constructor() {
|
|
}
|
|
|
|
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()
|
|
|
|
// $.bootstrapMaterialDesign()
|
|
|
|
})
|