mirror of
https://github.com/myvesta/vesta
synced 2025-08-14 10:37:42 -07:00
Move content of .js.html files to .html
This commit is contained in:
parent
61e556ae11
commit
1fa3c4b3fb
43 changed files with 550 additions and 507 deletions
|
@ -186,3 +186,26 @@
|
|||
</table>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<?php insert_scripts(); ?>
|
||||
<script>
|
||||
function elementHideShow(elementToHideOrShow){
|
||||
var el = document.getElementById(elementToHideOrShow);
|
||||
el.style.display = el.style.display === 'none' ? 'block' : 'none';
|
||||
}
|
||||
|
||||
function randomString() {
|
||||
var chars = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz';
|
||||
var string_length = 10;
|
||||
var randomstring = '';
|
||||
for (var i = 0; i < string_length; i++) {
|
||||
var rnum = Math.floor(Math.random() * chars.length);
|
||||
randomstring += chars.substr(rnum, 1);
|
||||
}
|
||||
document.v_add_db.v_password.value = randomstring;
|
||||
}
|
||||
|
||||
GLOBAL.DB_USER_PREFIX = <?=json_encode($user.'_')?>;
|
||||
GLOBAL.DB_DBNAME_PREFIX = <?=json_encode($user.'_')?>;
|
||||
</script>
|
||||
<script src="/js/pages/add.db.js"></script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue