superfluous comments

This commit is contained in:
Kevin Ross 2016-01-29 10:24:23 -06:00
parent 5ca611a38d
commit ec3d7ed815

View File

@ -1,23 +1,7 @@
/**
* Dynamically display style properties i.e. font
*/
const Style = (($) => {
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
// const Default = {
// template: ``
// }
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
class Style {
const Style = class {
constructor() {
@ -60,11 +44,6 @@ const Style = (($) => {
writeFn($element, $(text))
})
}
}
return Style
})(jQuery)
}
export default Style