Commit 9540b13b by Piotr Mitros

Removed print statements for deployment

parent 89a2ddf7
...@@ -31,13 +31,10 @@ class AudioXBlock(XBlock): ...@@ -31,13 +31,10 @@ class AudioXBlock(XBlock):
when viewing courses. when viewing courses.
""" """
html = self.resource_string("static/html/audio.html") html = self.resource_string("static/html/audio.html")
print self.src
print html.format
frag = Fragment(html.format(src = self.src)) frag = Fragment(html.format(src = self.src))
frag.add_css(self.resource_string("static/css/audio.css")) frag.add_css(self.resource_string("static/css/audio.css"))
frag.add_javascript(self.resource_string("static/js/src/audio.js")) frag.add_javascript(self.resource_string("static/js/src/audio.js"))
frag.initialize_js('AudioXBlock') frag.initialize_js('AudioXBlock')
print self.xml_text_content()
return frag return frag
# TO-DO: change this to create the scenarios you'd like to see in the # TO-DO: change this to create the scenarios you'd like to see in the
......
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