Mercurial > hg > AnnotationManager
view WebContent/jscripts/tiny_mce/plugins/xhtmlxtras/js/abbr.js @ 14:0f64de5fff5a
try to use javax.xml.bind.DatatypeConverter
| author | casties |
|---|---|
| date | Wed, 21 Mar 2012 16:38:50 +0100 |
| parents | 0be9d53a6967 |
| children |
line wrap: on
line source
/** * abbr.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('abbr'); if (SXE.currentAction == "update") { SXE.showRemoveButton(); } } function insertAbbr() { SXE.insertElement('abbr'); tinyMCEPopup.close(); } function removeAbbr() { SXE.removeElement('abbr'); tinyMCEPopup.close(); } tinyMCEPopup.onInit.add(init);
