we can make the js linter even happier
This commit is contained in:
parent
3588ebd979
commit
681ae78d8f
1 changed files with 1 additions and 1 deletions
|
@ -532,7 +532,7 @@ editor = {
|
||||||
$(this).val('');
|
$(this).val('');
|
||||||
if (!confirm('Are you sure you want to copy settings from '+value.name+'?')) return;
|
if (!confirm('Are you sure you want to copy settings from '+value.name+'?')) return;
|
||||||
delete value.name;
|
delete value.name;
|
||||||
for (key in value) {
|
for (var key in value) {
|
||||||
if (value.hasOwnProperty(key)) content.find('[name='+key+']').val(value[key]);
|
if (value.hasOwnProperty(key)) content.find('[name='+key+']').val(value[key]);
|
||||||
}
|
}
|
||||||
editor._source_image_calculate_scale();
|
editor._source_image_calculate_scale();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue