aurelia-materialize-bridge
Version:
Aurelia interface to http://materializecss.com/
22 lines • 753 B
JavaScript
import { __decorate, __metadata } from "tslib";
import * as au from "../aurelia";
var MdFooter = /** @class */ (function () {
function MdFooter(element) {
this.element = element;
this.attributeManager = new au.AttributeManager(this.element);
}
MdFooter.prototype.bind = function () {
this.attributeManager.addClasses("page-footer");
};
MdFooter.prototype.unbind = function () {
this.attributeManager.removeClasses("page-footer");
};
MdFooter = __decorate([
au.customAttribute("md-footer"),
au.autoinject,
__metadata("design:paramtypes", [Element])
], MdFooter);
return MdFooter;
}());
export { MdFooter };
//# sourceMappingURL=footer.js.map