Skip to content

Commit

Permalink
demos: view source cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
rdworth committed Jan 24, 2009
1 parent 29323c7 commit 47f9a3b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion demos/index.html
Expand Up @@ -211,7 +211,12 @@
return false;
}).end().find(">div").hide();
}
$('#demo-source code').empty().text(source);
var cleanedSource = source
.replace('themes/base/ui.all.css', 'theme/ui.all.css')
.replace(/\s*\x3Clink.*demos\x2Ecss.*\x3E\s*/, '\r\n\t')
.replace(/\x2E\x2E\x2F\x2E\x2E\x2F/g, '');

$('#demo-source code').empty().text(cleanedSource);
}

function resetDemos() {
Expand Down

0 comments on commit 47f9a3b

Please sign in to comment.