Added TinyMCE editor functions & Updated TinyMCE to TinyMCE-jQuery 3.4b1

This commit is contained in:
Deon George
2011-01-07 17:56:20 +11:00
parent a862249fed
commit ad5b674d22
1224 changed files with 50965 additions and 50821 deletions

View File

@@ -1,8 +1,11 @@
/**
* $Id: editor_plugin_src.js 42 2006-08-08 14:32:24Z spocke $
/**
* abbr.js
*
* @author Moxiecode - based on work by Andrew Tetlaw
* @copyright Copyright <20> 2004-2008, Moxiecode Systems AB, All rights reserved.
* Copyright 2009, Moxiecode Systems AB
* Released under LGPL License.
*
* License: http://tinymce.moxiecode.com/license
* Contributing: http://tinymce.moxiecode.com/contributing
*/
function init() {
@@ -13,7 +16,7 @@ function init() {
}
function insertAbbr() {
SXE.insertElement(tinymce.isIE ? 'html:abbr' : 'abbr');
SXE.insertElement('abbr');
tinyMCEPopup.close();
}

View File

@@ -1,8 +1,11 @@
/**
* $Id: editor_plugin_src.js 42 2006-08-08 14:32:24Z spocke $
/**
* acronym.js
*
* @author Moxiecode - based on work by Andrew Tetlaw
* @copyright Copyright <20> 2004-2008, Moxiecode Systems AB, All rights reserved.
* Copyright 2009, Moxiecode Systems AB
* Released under LGPL License.
*
* License: http://tinymce.moxiecode.com/license
* Contributing: http://tinymce.moxiecode.com/contributing
*/
function init() {

View File

@@ -1,8 +1,11 @@
/**
* $Id: editor_plugin_src.js 42 2006-08-08 14:32:24Z spocke $
/**
* attributes.js
*
* @author Moxiecode - based on work by Andrew Tetlaw
* @copyright Copyright <20> 2004-2006, Moxiecode Systems AB, All rights reserved.
* Copyright 2009, Moxiecode Systems AB
* Released under LGPL License.
*
* License: http://tinymce.moxiecode.com/license
* Contributing: http://tinymce.moxiecode.com/contributing
*/
function init() {

View File

@@ -1,8 +1,11 @@
/**
* $Id: editor_plugin_src.js 42 2006-08-08 14:32:24Z spocke $
/**
* cite.js
*
* @author Moxiecode - based on work by Andrew Tetlaw
* @copyright Copyright <20> 2004-2008, Moxiecode Systems AB, All rights reserved.
* Copyright 2009, Moxiecode Systems AB
* Released under LGPL License.
*
* License: http://tinymce.moxiecode.com/license
* Contributing: http://tinymce.moxiecode.com/contributing
*/
function init() {

View File

@@ -1,8 +1,11 @@
/**
* $Id: editor_plugin_src.js 42 2006-08-08 14:32:24Z spocke $
/**
* del.js
*
* @author Moxiecode - based on work by Andrew Tetlaw
* @copyright Copyright <20> 2004-2008, Moxiecode Systems AB, All rights reserved.
* Copyright 2009, Moxiecode Systems AB
* Released under LGPL License.
*
* License: http://tinymce.moxiecode.com/license
* Contributing: http://tinymce.moxiecode.com/contributing
*/
function init() {
@@ -42,16 +45,6 @@ function insertDel() {
tinyMCEPopup.close();
}
function insertInlineElement(en) {
var ed = tinyMCEPopup.editor, dom = ed.dom;
ed.getDoc().execCommand('FontName', false, 'mceinline');
tinymce.each(dom.select(tinymce.isWebKit ? 'span' : 'font'), function(n) {
if (n.style.fontFamily == 'mceinline' || n.face == 'mceinline')
dom.replace(dom.create(en), n, 1);
});
}
function removeDel() {
SXE.removeElement('del');
tinyMCEPopup.close();

View File

@@ -1,8 +1,11 @@
/**
* $Id: editor_plugin_src.js 42 2006-08-08 14:32:24Z spocke $
/**
* element_common.js
*
* @author Moxiecode - based on work by Andrew Tetlaw
* @copyright Copyright <20> 2004-2008, Moxiecode Systems AB, All rights reserved.
* Copyright 2009, Moxiecode Systems AB
* Released under LGPL License.
*
* License: http://tinymce.moxiecode.com/license
* Contributing: http://tinymce.moxiecode.com/contributing
*/
tinyMCEPopup.requireLangPack();
@@ -157,19 +160,16 @@ SXE.insertElement = function(element_name) {
if(s.length > 0) {
tagName = element_name;
if (tinymce.isIE && element_name.indexOf('html:') == 0)
element_name = element_name.substring(5).toLowerCase();
insertInlineElement(element_name);
var elementArray = tinymce.grep(SXE.inst.dom.select(element_name));
for (var i=0; i<elementArray.length; i++) {
var elm = elementArray[i];
if (SXE.inst.dom.getAttrib(elm, '_mce_new')) {
if (SXE.inst.dom.getAttrib(elm, 'data-mce-new')) {
elm.id = '';
elm.setAttribute('id', '');
elm.removeAttribute('id');
elm.removeAttribute('_mce_new');
elm.removeAttribute('data-mce-new');
setAllCommonAttribs(elm);
}
@@ -194,7 +194,7 @@ SXE.removeElement = function(element_name){
}
SXE.showRemoveButton = function() {
document.getElementById("remove").style.display = 'block';
document.getElementById("remove").style.display = '';
}
SXE.containsClass = function(elm,cl) {
@@ -224,8 +224,8 @@ function insertInlineElement(en) {
var ed = tinyMCEPopup.editor, dom = ed.dom;
ed.getDoc().execCommand('FontName', false, 'mceinline');
tinymce.each(dom.select(tinymce.isWebKit ? 'span' : 'font'), function(n) {
tinymce.each(dom.select('span,font'), function(n) {
if (n.style.fontFamily == 'mceinline' || n.face == 'mceinline')
dom.replace(dom.create(en, {_mce_new : 1}), n, 1);
dom.replace(dom.create(en, {'data-mce-new' : 1}), n, 1);
});
}

View File

@@ -1,8 +1,11 @@
/**
* $Id: editor_plugin_src.js 42 2006-08-08 14:32:24Z spocke $
/**
* ins.js
*
* @author Moxiecode - based on work by Andrew Tetlaw
* @copyright Copyright <20> 2004-2008, Moxiecode Systems AB, All rights reserved.
* Copyright 2009, Moxiecode Systems AB
* Released under LGPL License.
*
* License: http://tinymce.moxiecode.com/license
* Contributing: http://tinymce.moxiecode.com/contributing
*/
function init() {
@@ -46,14 +49,4 @@ function removeIns() {
tinyMCEPopup.close();
}
function insertInlineElement(en) {
var ed = tinyMCEPopup.editor, dom = ed.dom;
ed.getDoc().execCommand('FontName', false, 'mceinline');
tinymce.each(dom.select(tinymce.isWebKit ? 'span' : 'font'), function(n) {
if (n.style.fontFamily == 'mceinline' || n.face == 'mceinline')
dom.replace(dom.create(en), n, 1);
});
}
tinyMCEPopup.onInit.add(init);