2 YUI 3.13.0 (build 508226d)
3 Copyright 2013 Yahoo! Inc. All rights reserved.
4 Licensed under the BSD License.
5 http://yuilibrary.com/license/
8 YUI.add('editor-inline', function (Y, NAME) {
11 * Base class for InlineEditor. Instead to use an iframe, uses content editable element via ContentEditable Plugin.
13 * var editor = new Y.InlineEditor({
16 * editor.render('#demo');
22 * @submodule editor-inline
26 var InlineEditor = function() {
27 InlineEditor.superclass.constructor.apply(this, arguments);
30 Y.extend(InlineEditor, Y.EditorBase, {
31 initializer: function() {
32 this.plug(Y.Plugin.ContentEditable);
36 Y.InlineEditor = InlineEditor;
38 }, '3.13.0', {"requires": ["editor-base", "content-editable"]});