+ Add en lang files.
* Finish task 3292,3293,3294,3305,3306,3307,3308,3309.
This commit is contained in:
@@ -3,7 +3,6 @@ $(function()
|
||||
$('#type').change(function()
|
||||
{
|
||||
var type = $(this).val();
|
||||
$('#contentTypeTR').toggle(type != 'dingding');
|
||||
$('#sendTypeTR').toggle(type != 'dingding');
|
||||
$('#paramsTR').toggle(type != 'bearychat' && type != 'dingding');
|
||||
$('#urlNote').html(urlNote[type]);
|
||||
@@ -21,6 +20,18 @@ $(function()
|
||||
}
|
||||
});
|
||||
|
||||
$('#allParams, #allActions').click(function()
|
||||
{
|
||||
if($(this).prop('checked'))
|
||||
{
|
||||
$(this).parents('tr').find('input[type=checkbox]').attr('checked', 'checked');
|
||||
}
|
||||
else
|
||||
{
|
||||
$(this).parents('tr').find('input[type=checkbox]').removeAttr('checked');
|
||||
}
|
||||
});
|
||||
|
||||
$('#name').focus();
|
||||
$('#paramstext').attr('disabled', 'disabled');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user