Changeset 4907
- Timestamp:
- 01/08/10 16:46:53 (3 years ago)
- Location:
- CKEditor/trunk
- Files:
-
- 11 edited
-
_dev/docs_build/template/class.tmpl (modified) (5 diffs)
-
_source/core/_bootstrap.js (modified) (1 diff)
-
_source/core/ckeditor.js (modified) (1 diff)
-
_source/core/editor.js (modified) (3 diffs)
-
_source/core/focusmanager.js (modified) (2 diffs)
-
_source/plugins/clipboard/plugin.js (modified) (1 diff)
-
_source/plugins/dialog/plugin.js (modified) (1 diff)
-
_source/plugins/editingblock/plugin.js (modified) (1 diff)
-
_source/plugins/keystrokes/plugin.js (modified) (1 diff)
-
_source/plugins/undo/plugin.js (modified) (1 diff)
-
_source/plugins/wysiwygarea/plugin.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/_dev/docs_build/template/class.tmpl
r4906 r4907 598 598 <for each="member" in="ownEvents"> 599 599 <a name="event:{+Link.symbolNameToLinkName(member)+}"> </a> 600 <div class="fixedFont" >{!600 <div class="fixedFont" style="float:left">{! 601 601 if (member.isPrivate) output += "<private> "; 602 602 if (member.isInner) output += "<inner> "; … … 605 605 606 606 <if test="member.type"><span class="light">{{+new Link().toSymbol(member.type)+}}</span></if> 607 <if test="member.isStatic && member.memberOf != '_global_'"><span class="light">{+member.memberOf+}.</span></if><b>{+member.name+}</b>{+makeSignature(member.params)+} 608 609 </div> 607 <if test="member.isStatic && member.memberOf != '_global_'"><span class="light">{+member.memberOf+}.</span></if> 608 <b>{+member.name+}</b> : <object>.{+new Link().toSymbol('CKEDITOR.event#on').withText('on')+}( '{+member.name+}', function( e ){ ... } ) 609 610 </div> 611 <div style="float:right"> 612 <span class="heading">Since:</span> 613 <if test="member.since"> 614 {+ member.since +} 615 <else /> 616 3.0 617 </if> 618 </div> 619 <div style="clear:both"></div> 610 620 <div class="description"> 611 621 {+resolveLinks(member.desc)+} … … 619 629 <if test="member.example.length"> 620 630 <for each="example" in="member.example"> 621 <pre class="code">{+example+}</pre> 631 <if test="example.desc"> 632 <pre class="code">{+example+}</pre> 633 </if> 622 634 </for> 623 </if> 624 625 <if test="member.params.length"> 635 <else /> 636 <pre class="code"><span style="color:red">NO EXAMPLE AVAILABLE</span></pre> 637 </if> 638 626 639 <dl class="detailList"> 627 640 <dt class="heading">Parameters:</dt> 641 <dt> 642 <span class="light fixedFont">{{+new Link().toSymbol('CKEDITOR.eventInfo')+}}</span> <b>e</b> 643 </dt> 644 <dd>The standard event object passed to event listeners.</dd> 645 628 646 <for each="item" in="member.params"> 629 647 <dt> 630 {+((item.type)?"<span class=\"light fixedFont\">{"+(new Link().toSymbol(item.type))+"}</span> " : "")+}<b> {+item.name+}</b>648 {+((item.type)?"<span class=\"light fixedFont\">{"+(new Link().toSymbol(item.type))+"}</span> " : "")+}<b>e.{+item.name+}</b> 631 649 <if test="item.isOptional"><i>Optional<if test="item.defaultValue">, Default: {+item.defaultValue+}</if></i></if> 632 650 </dt> … … 634 652 </for> 635 653 </dl> 636 </if> 654 637 655 <if test="member.deprecated"> 638 656 <dl class="detailList"> … … 641 659 {+ resolveLinks(member.deprecated) +} 642 660 </dt> 643 </dl>644 </if>645 <if test="member.since">646 <dl class="detailList">647 <dt class="heading">Since:</dt>648 <dd>{+ member.since +}</dd>649 </dl>650 661 </dl> 651 662 </if> -
CKEditor/trunk/_source/core/_bootstrap.js
r4905 r4907 82 82 * @name CKEDITOR#loaded 83 83 * @event 84 * @param {CKEDITOR.eventInfo} e The standard event object passed to listeners.85 84 */ -
CKEditor/trunk/_source/core/ckeditor.js
r4905 r4907 101 101 * @name CKEDITOR#currentInstance 102 102 * @event 103 * @param {CKEDITOR.eventInfo} e The standard event object passed to listeners.104 103 */ -
CKEditor/trunk/_source/core/editor.js
r4906 r4907 699 699 * @name CKEDITOR#instanceCreated 700 700 * @event 701 * @param {CKEDITOR.eventInfo} e The standard event object passed to listeners. 702 * @param {CKEDITOR.editor} e.editor The editor instance that has been created. 701 * @param {CKEDITOR.editor} editor The editor instance that has been created. 703 702 */ 704 703 … … 707 706 * @name CKEDITOR#instanceDestroyed 708 707 * @event 709 * @param {CKEDITOR.eventInfo} e The standard event object passed to listeners. 710 * @param {CKEDITOR.editor} e.editor The editor instance that has been destroyed. 708 * @param {CKEDITOR.editor} editor The editor instance that has been destroyed. 711 709 */ 712 710 … … 715 713 * @name CKEDITOR#pluginsLoaded 716 714 * @event 717 * @param {CKEDITOR.eventInfo} e The standard event object passed to listeners.718 715 */ -
CKEditor/trunk/_source/core/focusmanager.js
r4905 r4907 127 127 * @name CKEDITOR.editor#focus 128 128 * @event 129 * @param {CKEDITOR.eventInfo} e The standard event object passed to listeners. 130 * @param {CKEDITOR.editor} e.editor The editor instance. 129 * @param {CKEDITOR.editor} editor The editor instance. 131 130 */ 132 131 … … 135 134 * @name CKEDITOR.editor#blur 136 135 * @event 137 * @param {CKEDITOR.eventInfo} e The standard event object passed to listeners. 138 * @param {CKEDITOR.editor} e.editor The editor instance. 136 * @param {CKEDITOR.editor} editor The editor instance. 139 137 */ -
CKEditor/trunk/_source/plugins/clipboard/plugin.js
r4905 r4907 365 365 * @since 3.1 366 366 * @event 367 * @param {CKEDITOR.eventInfo} e The standard event object passed to listeners. 368 * @param {String} [e.data.html] The HTML data to be pasted. If not available, e.data.text will be defined. 369 * @param {String} [e.data.text] The plain text data to be pasted, available when plain text operations are to used. If not available, e.data.html will be defined. 367 * @param {String} [data.html] The HTML data to be pasted. If not available, e.data.text will be defined. 368 * @param {String} [data.text] The plain text data to be pasted, available when plain text operations are to used. If not available, e.data.html will be defined. 370 369 */ -
CKEditor/trunk/_source/plugins/dialog/plugin.js
r4905 r4907 2788 2788 * @name CKEDITOR#dialogDefinition 2789 2789 * @event 2790 * @param {CKEDITOR.eventInfo} e The standard event object passed to listeners. 2791 * @param {CKEDITOR.dialog.dialogDefinition} e.data The dialog defination that 2790 * @param {CKEDITOR.dialog.dialogDefinition} data The dialog defination that 2792 2791 * is being loaded. 2793 * @param {CKEDITOR.editor} e .editor The editor instance that will use the2792 * @param {CKEDITOR.editor} editor The editor instance that will use the 2794 2793 * dialog. 2795 2794 */ -
CKEditor/trunk/_source/plugins/editingblock/plugin.js
r4905 r4907 240 240 * @name CKEDITOR#instanceReady 241 241 * @event 242 * @param {CKEDITOR.eventInfo} e The standard event object passed to listeners. 243 * @param {CKEDITOR.editor} e.editor The editor instance that has been created. 244 */ 242 * @param {CKEDITOR.editor} editor The editor instance that has been created. 243 */ -
CKEditor/trunk/_source/plugins/keystrokes/plugin.js
r4905 r4907 222 222 * @name CKEDITOR#key 223 223 * @event 224 * @param {CKEDITOR.eventInfo} e The standard event object passed to listeners. 225 * @param {Number} e.data.keyCode A number representing the key code (or 224 * @param {Number} data.keyCode A number representing the key code (or 226 225 * combination). It is the sum of the current key code and the 227 226 * {@link CKEDITOR.CTRL}, {@link CKEDITOR.SHIFT} and {@link CKEDITOR.ALT} -
CKEditor/trunk/_source/plugins/undo/plugin.js
r4906 r4907 510 510 * @name CKEDITOR.editor#saveSnapshot 511 511 * @event 512 * @param {CKEDITOR.eventInfo} e The standard event object passed to listeners.513 512 */ -
CKEditor/trunk/_source/plugins/wysiwygarea/plugin.js
r4906 r4907 851 851 * @name CKEDITOR.editor#dataReady 852 852 * @event 853 * @param {CKEDITOR.eventInfo} e The standard event object passed to listeners.854 853 */
Note: See TracChangeset
for help on using the changeset viewer.
