mirror of
https://github.com/ComputerScienceHouse/proxstar.git
synced 2025-03-09 15:40:09 +00:00
overhaul of rtp view, added simple caching, added rrd graphs
This commit is contained in:
parent
b9e5236f0a
commit
2b69443930
10 changed files with 229 additions and 72 deletions
|
|
@ -584,18 +584,21 @@ $(".edit-limit").click(function(){
|
|||
cpu_text.innerHTML = 'CPU';
|
||||
options.append(cpu_text);
|
||||
var cpu = document.createElement('input');
|
||||
cpu.type = 'number';
|
||||
cpu.defaultValue = cur_cpu;
|
||||
options.append(cpu);
|
||||
mem_text = document.createElement('p');
|
||||
mem_text.innerHTML = 'Memory (GB)';
|
||||
options.append(mem_text);
|
||||
var mem = document.createElement('input');
|
||||
mem.type = 'number';
|
||||
mem.defaultValue = cur_mem;
|
||||
options.append(mem)
|
||||
disk_text = document.createElement('p');
|
||||
disk_text.innerHTML = 'Disk (GB)';
|
||||
options.append(disk_text);
|
||||
var disk = document.createElement('input');
|
||||
disk.type = 'number';
|
||||
disk.defaultValue = cur_disk;
|
||||
options.append(disk)
|
||||
swal({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue