Changeset 103
- Timestamp:
- 05/07/08 09:53:54 (7 months ago)
- Files:
-
- 1 modified
-
trunk/app/views/deployments/new.html.erb (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/deployments/new.html.erb
r99 r103 83 83 var own_id = /host_(\d)_on/.exec(this.id)[1]; 84 84 var other_id = "host_" + own_id + '_off'; 85 console.log('in diable host ' + own_id + '. other: ' + other_id);86 85 $(this).hide(); 87 86 $(other_id).show(); … … 94 93 var own_id = /host_(\d)_off/.exec(this.id)[1]; 95 94 var other_id = "host_" + own_id + '_on'; 96 console.log('in enable host ' + own_id + '. other: ' + other_id);97 95 $(this).hide(); 98 96 $(other_id).show();
