2014-05-29 22:31:28 -04:00
|
|
|
function send(msg) {
|
2014-05-30 23:12:52 -04:00
|
|
|
document.title = "null";
|
|
|
|
document.title = msg;
|
2014-05-29 22:31:28 -04:00
|
|
|
}
|
|
|
|
|
2014-05-29 23:23:40 -04:00
|
|
|
function init(basename, strings) {
|
2014-05-30 23:12:52 -04:00
|
|
|
$('#basename').html(basename).show();
|
2014-05-29 22:31:28 -04:00
|
|
|
}
|
|
|
|
|
2014-05-30 22:29:07 -04:00
|
|
|
function url_is_set() {
|
2014-05-30 23:12:52 -04:00
|
|
|
$('#copy-button')
|
|
|
|
.click(function(){
|
|
|
|
send('copy_url');
|
|
|
|
})
|
|
|
|
.show();
|
2014-05-29 23:23:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function update(msg) {
|
2014-05-30 23:12:52 -04:00
|
|
|
var $line = $('<p></p>').append(msg);
|
|
|
|
$('#output').append($line);
|
|
|
|
|
|
|
|
// scroll to bottom
|
|
|
|
$('#output').scrollTop($('#output').height());
|
2014-05-29 22:53:35 -04:00
|
|
|
}
|