Files
OfficialSite/assets/scripts/modules/Title.js

24 lines
514 B
JavaScript
Raw Normal View History

// ==========================================================================
// Title module
// ==========================================================================
2016-03-16 12:11:23 -04:00
import Module from './Module';
class Title extends Module {
constructor(options) {
super();
this.$el = options.$el;
console.log('Title module');
console.log(this.$el);
}
// Destroy
// ==========================================================================
destroy() {
this.$el.off();
}
}
export default Title;