add jsdoc to mindplot module

--HG--
branch : mindplot_jsdoc
This commit is contained in:
Christina Korger
2015-03-23 09:25:54 +01:00
parent 53e210456e
commit 47c4566435
46 changed files with 1524 additions and 108 deletions

View File

@@ -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) {