diff options
author | Jayaram Pai | 2013-12-23 13:58:39 +0530 |
---|---|---|
committer | Jayaram Pai | 2013-12-23 13:58:39 +0530 |
commit | 764bbe1fde98daf8ba549f4cc3ba5f3273b71ef0 (patch) | |
tree | 8a69aecffbb03a87c5a756537f7077f03ea97845 /static/website/js | |
parent | 0047ca833ec32ea4b026a4c495fd6b026927cf54 (diff) | |
download | FOSSEE-Forum-764bbe1fde98daf8ba549f4cc3ba5f3273b71ef0.tar.gz FOSSEE-Forum-764bbe1fde98daf8ba549f4cc3ba5f3273b71ef0.tar.bz2 FOSSEE-Forum-764bbe1fde98daf8ba549f4cc3ba5f3273b71ef0.zip |
added reply count, link option for nicedit, change in date format
Diffstat (limited to 'static/website/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'); |