diff options
author | aditya | 2020-05-22 21:00:37 +0530 |
---|---|---|
committer | aditya | 2020-05-22 21:00:37 +0530 |
commit | a9993eeec0a16d058bf36301b2f282b29aec15d1 (patch) | |
tree | b413f4ccd20b62868eca89551b6ec05d80fa926d /yaksh/static | |
parent | d7c3a232e843cce5dcf6d1e80c3498f24e7dfda2 (diff) | |
download | online_test-a9993eeec0a16d058bf36301b2f282b29aec15d1.tar.gz online_test-a9993eeec0a16d058bf36301b2f282b29aec15d1.tar.bz2 online_test-a9993eeec0a16d058bf36301b2f282b29aec15d1.zip |
Add plugin settings in course mail textarea
Diffstat (limited to 'yaksh/static')
-rw-r--r-- | yaksh/static/yaksh/js/course.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/yaksh/static/yaksh/js/course.js b/yaksh/static/yaksh/js/course.js index 19f8562..d469af4 100644 --- a/yaksh/static/yaksh/js/course.js +++ b/yaksh/static/yaksh/js/course.js @@ -52,8 +52,9 @@ $(document).ready(function(){ $(function() {
tinymce.init({
selector: 'textarea#email_body',
- max_height: 200,
- height: 200
+ max_height: 400,
+ height: 400,
+ plugins: "code image link"
});
});
|