Changes between Version 25 and Version 26 of AddWYSIWYGEditor
- Timestamp:
- Jul 25, 2008, 1:40:45 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AddWYSIWYGEditor
v25 v26 81 81 82 82 class Media: 83 js = (' /js/tiny_mce/tiny_mce.js',84 ' /js/tiny_mce/textarea.js',)83 js = ('js/tiny_mce/tiny_mce.js', 84 'js/tiny_mce/textarea.js',) 85 85 86 86 admin.site.register(MyModel, MyModelOptions) … … 118 118 class FlatPageAdmin(admin.ModelAdmin): 119 119 class Media: 120 js = (' /js/tiny_mce/tiny_mce.js',121 ' /js/tiny_mce/textarea.js',)120 js = ('js/tiny_mce/tiny_mce.js', 121 'js/tiny_mce/textarea.js',) 122 122 123 123 # We have to unregister it, and then reregister … … 143 143 height : "500", 144 144 }}} 145