mirror of
https://github.com/lwch/natpass
synced 2025-10-04 04:56:24 +08:00
13 lines
280 B
JavaScript
13 lines
280 B
JavaScript
var page = {
|
|
init: function() {
|
|
page.connect();
|
|
},
|
|
connect: function() {
|
|
$.get('/new', function(ret) {
|
|
page.id = ret;
|
|
$('#code').attr('src', `/forward/${page.id}/`);
|
|
});
|
|
},
|
|
id: ''
|
|
};
|
|
$(document).ready(page.init); |