diff options
Diffstat (limited to 'static/website/js/thread-user.js')
-rw-r--r-- | static/website/js/thread-user.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/static/website/js/thread-user.js b/static/website/js/thread-user.js index a8e7eee..502f0ce 100644 --- a/static/website/js/thread-user.js +++ b/static/website/js/thread-user.js @@ -1,7 +1,7 @@ bkLib.onDomLoaded(function() { var questionNicEditor = new nicEditor({ - buttonList : ['fontSize','bold','italic','underline','strikeThrough','subscript','superscript','html','image'], + buttonList : ['fontSize','bold','italic','underline','strikeThrough','subscript','superscript','html','image', 'link'], iconsPath: "/static/website/js/nicEditorIcons.gif", }); questionNicEditor.setPanel('questionNicPanel'); @@ -71,7 +71,7 @@ $(document).ready(function() { $replyPanelWrapper = $("#replyPanelWrapper"); var replyNicEditor = new nicEditor({ - buttonList : ['fontSize','bold','italic','underline','strikeThrough','subscript','superscript','html','image'], + buttonList : ['fontSize','bold','italic','underline','strikeThrough','subscript','superscript','html','image', 'link'], iconsPath: "/static/website/js/nicEditorIcons.gif", }); replyNicEditor.panelInstance('replyNicPanel'); |