Browse Source

Extend wysiwyghtml5 to allow HTML editing

I may regret this...

Fixes #350
master
David Winterbottom 13 years ago
parent
commit
a75b87fe25
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      oscar/static/oscar/js/oscar/dashboard.js

+ 4
- 1
oscar/static/oscar/js/oscar/dashboard.js View File

@@ -18,7 +18,10 @@ oscar.dashboard = {
18 18
         $('input[name^="date"], input[name$="date"]').datepicker({dateFormat: 'yy-mm-dd'});
19 19
 
20 20
         // Use WYSIHTML5 widget on textareas
21
-        $('form.wysiwyg textarea').wysihtml5();
21
+        var options = {
22
+            "html": true
23
+        };
24
+        $('form.wysiwyg textarea').wysihtml5(options);
22 25
 
23 26
         $('.scroll-pane').jScrollPane();
24 27
 

Loading…
Cancel
Save