You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
295 B
13 lines
295 B
10 years ago
|
$(document).ready(function() {
|
||
|
$('pre code').each(function(i, block) {
|
||
|
hljs.highlightBlock(block);
|
||
|
});
|
||
9 years ago
|
|
||
|
$('#paste').on('change', function() {
|
||
|
$('input[name=source]').val(['form']);
|
||
|
});
|
||
|
$('#upload').on('change', function() {
|
||
|
$('input[name=source]').val(['file']);
|
||
|
});
|
||
10 years ago
|
});
|