Skip to content
Snippets Groups Projects

[BUGFIX] Allow file:// links in Element Browser

Merged Marco Huber requested to merge mhuber84/tinymce4_rte:master into master
2 files
+ 2
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -86,7 +86,7 @@ var plugin = tinymce.PluginManager.add('typo3filemanager', function(editor, url)
var additionalParameter = '';
if (element) {
additionalParameter = '&curUrl[url]=' + encodeURIComponent(element.href);
additionalParameter = '&curUrl[url]=' + encodeURIComponent(element.getAttribute('href'));
if (element.target) {
additionalParameter += '&curUrl[target]=' + encodeURIComponent(element.target);
}
Loading