diff options
author | Andreas Gohr <andi@splitbrain.org> | 2015-05-23 15:31:16 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2015-05-23 15:31:16 +0200 |
commit | 4f2e8bf8642a993a0a5edf32a3172eaf77645a25 (patch) | |
tree | 2dbd5870fd094eca4b0c122104d27642d32bd28e /lib/plugins/styling | |
parent | 123bc813fd93ab5d8dab3cc4a66a09e613a10aa2 (diff) | |
download | rpg-4f2e8bf8642a993a0a5edf32a3172eaf77645a25.tar.gz rpg-4f2e8bf8642a993a0a5edf32a3172eaf77645a25.tar.bz2 |
fixed ajax endpoint for styling plugin
Diffstat (limited to 'lib/plugins/styling')
-rw-r--r-- | lib/plugins/styling/script.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/plugins/styling/script.js b/lib/plugins/styling/script.js index 76cd1a847..f2b4b9ebb 100644 --- a/lib/plugins/styling/script.js +++ b/lib/plugins/styling/script.js @@ -39,7 +39,7 @@ jQuery(function () { params[params.length] = {name: 'run', value: 'preview'}; jQuery.post( - DOKU_BASE + '/lib/exe/ajax.php', + DOKU_BASE + 'lib/exe/ajax.php', params, styling_updateCSS ); @@ -48,7 +48,7 @@ jQuery(function () { // load the dialog content and apply listeners $dialog.load( - DOKU_BASE + '/lib/exe/ajax.php', + DOKU_BASE + 'lib/exe/ajax.php', { 'call': 'plugin_styling', 'run': 'html', |