aurelia-materialize-bridge
Version:
Aurelia interface to http://materializecss.com/
24 lines • 959 B
JavaScript
define(["require", "exports", "tslib", "../aurelia"], function (require, exports, tslib_1, au) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
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 = tslib_1.__decorate([
au.customAttribute("md-footer"),
au.autoinject,
tslib_1.__metadata("design:paramtypes", [Element])
], MdFooter);
return MdFooter;
}());
exports.MdFooter = MdFooter;
});
//# sourceMappingURL=footer.js.map