')
- .html(app.actions[k].code.replace('/\n/
\n/g'))
+ .html(app.actions[k].code[1].replace('/\n/
\n/g'))
.hide();
var $button = new Ox.Button({
title: [
@@ -135,7 +135,8 @@ function constructList() {
.addClass("margin")
.click(function() { $code.toggle()})
.appendTo(info)
- $('').html(' View Python Source').appendTo(info)
+ var f = app.actions[k].code[0];
+ $('').html(' View Source ('+f+')').appendTo(info)
$('').append($code).appendTo(info)
hljs.highlightBlock($code[0], ' ');