Mercurial > public > sg101
view static/js/tiny_mce/plugins/xhtmlxtras/js/acronym.js @ 730:b5b7910d78df
Stupid IE10 overflowed the progress bar. Put in a work around.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 06 Oct 2013 15:11:22 -0500 |
parents | 88b2b9cb8c1f |
children |
line wrap: on
line source
/** * 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);