Skip to content

Commit

Permalink
refs #1543 : modify - wikilink toolbar icons
Browse files Browse the repository at this point in the history
  • Loading branch information
inureyes committed Jul 27, 2015
1 parent fa460d9 commit 89c20ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/WikiCube/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function WikiCube_AddButton($target) {
editor.addButton('wikicubeAddWikiLink', {
title: 'Add Wiki Link',
cmd: 'wikicubeAddLink',
icon: 'save'
icon: 'link'
});
editor.addCommand('wikicubeAddTagLink', function () {
if (editor.editormode == 'wysiwyg') {
Expand All @@ -89,7 +89,7 @@ function WikiCube_AddButton($target) {
editor.addButton('wikicubeAddTagLink', {
title: 'Add Wiki Tag Link',
cmd: 'wikicubeAddTagLink',
icon: 'save'
icon: 'bookmark'
});
editor.addCommand('wikicubeAddCategoryLink', function () {
if (editor.editormode == 'wysiwyg') {
Expand All @@ -100,7 +100,7 @@ function WikiCube_AddButton($target) {
editor.addButton('wikicubeAddCategoryLink', {
title: 'Add Wiki Link',
cmd: 'wikicubeAddCategoryLink',
icon: 'save'
icon: 'link'
});
editor.settings.toolbar2 = editor.settings.toolbar2 + ' wikicubeAddWikiLink';
editor.settings.toolbar2 = editor.settings.toolbar2 + ' wikicubeAddTagLink';
Expand Down

0 comments on commit 89c20ea

Please sign in to comment.