Commit 45144ec4 by Calen Pennington

Remove the live preview code from the html and raw modules, in preparation for…

Remove the live preview code from the html and raw modules, in preparation for updating the preview on save
parent 1aba46de
...@@ -4,7 +4,6 @@ from lxml import etree ...@@ -4,7 +4,6 @@ from lxml import etree
from xmodule.x_module import XModule from xmodule.x_module import XModule
from xmodule.raw_module import RawDescriptor from xmodule.raw_module import RawDescriptor
from pkg_resources import resource_string
log = logging.getLogger("mitx.courseware") log = logging.getLogger("mitx.courseware")
...@@ -26,9 +25,6 @@ class HtmlDescriptor(RawDescriptor): ...@@ -26,9 +25,6 @@ class HtmlDescriptor(RawDescriptor):
module_class = HtmlModule module_class = HtmlModule
filename_extension = "html" filename_extension = "html"
js = {'coffee': [resource_string(__name__, 'js/module/html.coffee')]}
js_module = 'HTML'
# TODO (cpennington): Delete this method once all fall 2012 course are being # TODO (cpennington): Delete this method once all fall 2012 course are being
# edited in the cms # edited in the cms
@classmethod @classmethod
......
class @HTML class @HTML
constructor: (@element) -> constructor: (@element) ->
@edit_box = $(".edit-box", @element) @edit_box = $(".edit-box", @element)
@preview = $(".preview", @element)
@edit_box.on('input', =>
@preview.empty().append(@edit_box.val())
)
save: -> @edit_box.val() save: -> @edit_box.val()
class @Raw class @Raw
constructor: (@element) -> constructor: (@element) ->
@edit_box = $(".edit-box", @element) @edit_box = $(".edit-box", @element)
@preview = $(".preview", @element)
@edit_box.on('input', =>
@preview.empty().text(@edit_box.val())
)
save: -> @edit_box.val() save: -> @edit_box.val()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment