mirror of
https://github.com/lwch/natpass.git
synced 2024-04-21 12:41:54 +00:00
13 lines
286 B
JavaScript
13 lines
286 B
JavaScript
var page = {
|
|
init: function() {
|
|
page.connect();
|
|
},
|
|
connect: function() {
|
|
$.get('/new', function(ret) {
|
|
page.name = ret;
|
|
$('#code').attr('src', `/forward/${page.name}/`);
|
|
});
|
|
},
|
|
name: ''
|
|
};
|
|
$(document).ready(page.init); |