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