aboutsummaryrefslogtreecommitdiffstats
path: root/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-05-30 22:16:34 -0700
committerredmatrix <git@macgirvin.com>2016-05-30 22:16:34 -0700
commit670e83b30050201e3ac069c9dfa86a92aff2431d (patch)
tree1280e93b6435fcca43d85a940c64d24c8c07936b /library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js
parent44d3dadb03406a811c30340c814b3f95483a6a6d (diff)
downloadvolse-hubzilla-670e83b30050201e3ac069c9dfa86a92aff2431d.tar.gz
volse-hubzilla-670e83b30050201e3ac069c9dfa86a92aff2431d.tar.bz2
volse-hubzilla-670e83b30050201e3ac069c9dfa86a92aff2431d.zip
remove a bunch of unused stuff, some of which is orphaned and some which represents dead development efforts
Diffstat (limited to 'library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js')
-rw-r--r--library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js28
1 files changed, 0 insertions, 28 deletions
diff --git a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js b/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js
deleted file mode 100644
index 6ec2f8871..000000000
--- a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js
+++ /dev/null
@@ -1,28 +0,0 @@
-/**
- * acronym.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('acronym');
- if (SXE.currentAction == "update") {
- SXE.showRemoveButton();
- }
-}
-
-function insertAcronym() {
- SXE.insertElement('acronym');
- tinyMCEPopup.close();
-}
-
-function removeAcronym() {
- SXE.removeElement('acronym');
- tinyMCEPopup.close();
-}
-
-tinyMCEPopup.onInit.add(init);