wallet-core/screen.js
Florian Dold d519415433 Squashed 'thirdparty/URI.js/' content from commit b77c167
git-subtree-dir: thirdparty/URI.js
git-subtree-split: b77c167bc201575956ad409333ff032e504b8044
2016-10-10 03:47:49 +02:00

39 lines
1.0 KiB
JavaScript

(function($, undefined){
$(function() {
if (!window.prettyPrint) {
return;
}
$('.showcase').each(function(){
var $this = $(that || this),
text, nodeName, lang, that;
if ($this.data('showcaseImport')) {
$this = $($this.data('showcaseImport'));
that = $this.get(0);
}
nodeName = (that || this).nodeName.toLowerCase();
lang = nodeName == 'script'
? 'js'
: (nodeName == 'style' ? 'css' : 'html');
if (lang == 'html') {
text = $('<div></div>').append($this.clone()).html();
} else {
text = $this.text();
}
$('<pre class="prettyprint lang-'+ lang +'"></pre>')
.text(text)
.insertBefore(this);
that && $(this).remove();
});
prettyPrint();
});
})(jQuery);