21 lines
578 B
JavaScript
21 lines
578 B
JavaScript
$(document).ready(function(){
|
|
/* Change the operating system. */
|
|
$('#osName').change(function(){
|
|
var selectVal = $('#osName').val();
|
|
$.get(createLink('host', 'ajaxGetOSVersion', 'field=' + selectVal), function(data)
|
|
{
|
|
$('select#osVersion').replaceWith(data);
|
|
$('#osVersion_chosen').remove();
|
|
$("select#osVersion").chosen();
|
|
});
|
|
});
|
|
|
|
var width = $("[name='unit']").css('width');
|
|
width = parseInt(width);
|
|
if(width < 74)
|
|
{
|
|
$("[name='unit']").css({'width': '74px'});
|
|
}
|
|
});
|
|
|