Skip to content

Commit

Permalink
Item14323: fix last references to renamed plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
cdot committed Mar 10, 2017
1 parent 05fd015 commit 03ba3dd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@ FoswikiTiny.init = function(init) {
init.convert_urls = true;
init.urlconverter_callback = function(url, node, onSave) {
var editor = tinymce.activeEditor;
return editor.plugins.foswikibuttons.convertURI(
return editor.plugins.foswiki.convertURI(
url, editor.serialising);
};

// Supply an image_list for the image plugin that calls
// back to the server for content - Item14323
init.image_list = function(callback) {
return tinymce.activeEditor.plugins.foswikibuttons.image_list(callback);
return tinymce.activeEditor.plugins.foswiki.image_list(callback);
};

tinymce.init(init);
Expand Down

0 comments on commit 03ba3dd

Please sign in to comment.