Commit 7bfb0804 by Julian Arni

Switch to studio_view

parent 562456ad
...@@ -75,9 +75,13 @@ def preview_component(request, location): ...@@ -75,9 +75,13 @@ def preview_component(request, location):
component = modulestore().get_item(location) component = modulestore().get_item(location)
# wrap_xmodule expects a function, so make a constant function
def get_render():
return component.runtime.render(component, None, "studio_view").content
return render_to_response('component.html', { return render_to_response('component.html', {
'preview': get_module_previews(request, component)[0], 'preview': get_module_previews(request, component)[0],
'editor': wrap_xmodule(component.get_html, component, 'xmodule_edit.html')(), 'editor': wrap_xmodule(get_render, component, 'xmodule_edit.html')(),
}) })
......
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