add jsdoc to mindplot module
--HG-- branch : mindplot_jsdoc
This commit is contained in:
@@ -17,13 +17,20 @@
|
||||
*/
|
||||
|
||||
//FIXME: this Class should be reimplemented
|
||||
mindplot.util.FadeEffect = new Class({
|
||||
mindplot.util.FadeEffect = new Class(/** @lends FadeEffect */{
|
||||
Extends: mindplot.Events,
|
||||
/**
|
||||
* @extends mindplot.Events
|
||||
* @constructs
|
||||
* @param elements
|
||||
* @param isVisible
|
||||
*/
|
||||
initialize: function(elements, isVisible) {
|
||||
this._isVisible = isVisible;
|
||||
this._element = elements;
|
||||
},
|
||||
|
||||
/** */
|
||||
start: function(){
|
||||
var visible = this._isVisible;
|
||||
_.each(this._element, function(elem) {
|
||||
|
||||
Reference in New Issue
Block a user