From 764bbe1fde98daf8ba549f4cc3ba5f3273b71ef0 Mon Sep 17 00:00:00 2001 From: Jayaram Pai Date: Mon, 23 Dec 2013 13:58:39 +0530 Subject: added reply count, link option for nicedit, change in date format --- static/website/js/thread-user.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'static/website/js') 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'); -- cgit