first commit

This commit is contained in:
CHIEFSOFT\ameye
2024-09-30 18:11:26 -04:00
commit e592ca6823
27270 changed files with 5002257 additions and 0 deletions
@@ -0,0 +1,32 @@
YUI.add('editor-inline', function (Y, NAME) {
/**
* Base class for InlineEditor. Instead to use an iframe, uses content editable element via ContentEditable Plugin.
*
* var editor = new Y.InlineEditor({
* content: 'Foo'
* });
* editor.render('#demo');
*
* @class InlineEditor
* @extends EditorBase
* @module editor
* @main editor
* @submodule editor-inline
* @constructor
*/
var InlineEditor = function() {
InlineEditor.superclass.constructor.apply(this, arguments);
};
Y.extend(InlineEditor, Y.EditorBase, {
initializer: function() {
this.plug(Y.Plugin.ContentEditable);
}
});
Y.InlineEditor = InlineEditor;
}, '3.18.1', {"requires": ["editor-base", "content-editable"]});
+1
View File
@@ -0,0 +1 @@
YUI.add("editor-inline",function(e,t){var n=function(){n.superclass.constructor.apply(this,arguments)};e.extend(n,e.EditorBase,{initializer:function(){this.plug(e.Plugin.ContentEditable)}}),e.InlineEditor=n},"3.18.1",{requires:["editor-base","content-editable"]});
@@ -0,0 +1,32 @@
YUI.add('editor-inline', function (Y, NAME) {
/**
* Base class for InlineEditor. Instead to use an iframe, uses content editable element via ContentEditable Plugin.
*
* var editor = new Y.InlineEditor({
* content: 'Foo'
* });
* editor.render('#demo');
*
* @class InlineEditor
* @extends EditorBase
* @module editor
* @main editor
* @submodule editor-inline
* @constructor
*/
var InlineEditor = function() {
InlineEditor.superclass.constructor.apply(this, arguments);
};
Y.extend(InlineEditor, Y.EditorBase, {
initializer: function() {
this.plug(Y.Plugin.ContentEditable);
}
});
Y.InlineEditor = InlineEditor;
}, '3.18.1', {"requires": ["editor-base", "content-editable"]});