* finish task #3167.

This commit is contained in:
wangyidong
2017-08-14 16:46:59 +08:00
parent d0f3eb3906
commit 6bd68359da
2 changed files with 7 additions and 1 deletions
+6 -1
View File
@@ -7,7 +7,12 @@ $(function()
{
$('#cpmBtn').click(function(){$('#copyProjectModal').modal('show')});
$('#copyProjects a').click(function(){setCopyProject($(this).data('id')); $('#copyProjectModal').modal('hide')});
$('#productsBox .col-sm-3').width($('#type').closest('td').width());
var typeWidth = $('#type').closest('td').width();
$('#productsBox .col-sm-3').width(typeWidth);
$(document).on('change', "#productsBox select", function()
{
$('#productsBox .col-sm-3').width(typeWidth);
});
});
function showTypeTips()