Changeset 525
- Timestamp:
- 08/25/08 22:30:46 (3 months ago)
- Files:
-
- trunk/src/wymeditor/jquery.wymeditor.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/wymeditor/jquery.wymeditor.js
r524 r525 39 39 NAME - The "name" attribute. 40 40 INDEX - A string replaced by the instance index. 41 WYM_INDEX - A string used to get/set the instance index. 41 42 BASE_PATH - A string replaced by WYMeditor's base path. 42 43 SKIN_PATH - A string replaced by WYMeditor's skin path. … … 109 110 NAME : "name", 110 111 INDEX : "{Wym_Index}", 112 WYM_INDEX : "wym_index", 111 113 BASE_PATH : "{Wym_Base_Path}", 112 114 CSS_PATH : "{Wym_Css_Path}", … … 722 724 //load wymbox 723 725 this._box = jQuery(this._element).hide().after(this._options.boxHtml).next(); 726 727 //store the instance index in the wymbox element 728 jQuery(this._box).data(WYMeditor.WYM_INDEX, this._index); 724 729 725 730 var h = WYMeditor.Helper;