66a060479f
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@14275 b9a71923-0436-4b27-9f14-aed3839534dd
29 lines
541 B
JavaScript
29 lines
541 B
JavaScript
/**
|
|
* cite.js
|
|
*
|
|
* Copyright 2009, Moxiecode Systems AB
|
|
* Released under LGPL License.
|
|
*
|
|
* License: http://tinymce.moxiecode.com/license
|
|
* Contributing: http://tinymce.moxiecode.com/contributing
|
|
*/
|
|
|
|
function init() {
|
|
SXE.initElementDialog('cite');
|
|
if (SXE.currentAction == "update") {
|
|
SXE.showRemoveButton();
|
|
}
|
|
}
|
|
|
|
function insertCite() {
|
|
SXE.insertElement('cite');
|
|
tinyMCEPopup.close();
|
|
}
|
|
|
|
function removeCite() {
|
|
SXE.removeElement('cite');
|
|
tinyMCEPopup.close();
|
|
}
|
|
|
|
tinyMCEPopup.onInit.add(init);
|