mirror of
https://github.com/cosmocode/dokuwiki-plugin-struct.git
synced 2025-08-06 10:24:17 +00:00
Simpler dot-safe selector
This commit is contained in:
@ -67,7 +67,5 @@ function formatString(format) {
|
|||||||
* Custom onSelect handler for struct img button
|
* Custom onSelect handler for struct img button
|
||||||
*/
|
*/
|
||||||
window.insertStructMedia = function (edid, mediaid, opts, align) {
|
window.insertStructMedia = function (edid, mediaid, opts, align) {
|
||||||
// escape dots in field id, bureaucracy plugin uses dots and it can break jQuery selectors
|
jQuery(document.getElementById(edid)).val(mediaid).change();
|
||||||
edid = edid.split('.').join('\\.');
|
|
||||||
jQuery('#' + edid).val(mediaid).change();
|
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user