diff options
| author | Julie Lala <jules@okfoc.us> | 2014-06-04 00:31:01 -0400 |
|---|---|---|
| committer | Julie Lala <jules@okfoc.us> | 2014-06-04 00:31:01 -0400 |
| commit | 80e1fcbc52870366f2e885fe82724960929765c9 (patch) | |
| tree | d380e04e8d784c40606bdaad82dcd37d0e260de5 /assets/javascripts/mx/primitives/mx.tableau.js | |
| parent | 5fb0ad045820de96848e1bde8e2dba8a6853dd4d (diff) | |
| parent | 90142bd07f926ef8a7f3ea86a563ec0ca648ca5d (diff) | |
Merge branch 'master' of github.com:okfocus/vvalls
Diffstat (limited to 'assets/javascripts/mx/primitives/mx.tableau.js')
| -rw-r--r-- | assets/javascripts/mx/primitives/mx.tableau.js | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/assets/javascripts/mx/primitives/mx.tableau.js b/assets/javascripts/mx/primitives/mx.tableau.js deleted file mode 100644 index 514e206..0000000 --- a/assets/javascripts/mx/primitives/mx.tableau.js +++ /dev/null @@ -1,48 +0,0 @@ - - -var Tableau = function(){ - this.extend = extend.bind(Tableau) - - function extend (props) { - var Super = this - var ExtendedTableau = function () { - Super.call(this) - props.init && props.init.apply(this, arguments) - } - ExtendedTableau.prototype = Object.create(Tableau.prototype) - for (var prop in props) { - if (props.hasOwnProperty(prop) && prop !== 'init') { - ExtendedTableau.prototype[prop] = props[prop] - } - } - ExtendedTableau.extend = extend.bind(ExtendedTableau) - return ExtendedTableau - } -} - -Tableau.prototype.init = function(opt){} -Tableau.prototype.animate = function(t){} -Tableau.prototype.show = function(){} -Tableau.prototype.hide = function(){} - -MX.Tableau = new Tableau() -MX.Tableaux = {} - -/* - -MX.Tableaux.Foo = MX.Tableau.extend({ - // this will be called within the contructor - init: function (opt) { - }, - - show: function(){ - }, - - hide: function(){ - }, - - animate: function() { - } -}) - -*/ |
