mirror of https://github.com/abpframework/abp.git
2 changed files with 15 additions and 14 deletions
@ -0,0 +1,4 @@ |
|||
{ |
|||
"singleQuote": true, |
|||
"useTabs": true |
|||
} |
|||
@ -1,17 +1,14 @@ |
|||
var abp = abp || {}; |
|||
(function ($) { |
|||
abp.modals = abp.modals || {}; |
|||
abp.modals = abp.modals || {}; |
|||
|
|||
abp.modals.FeatureManagement = function () { |
|||
|
|||
$('.FeatureValueCheckbox').change(function () { |
|||
if (this.checked) { |
|||
$(this).val("true"); |
|||
} |
|||
else { |
|||
$(this).val("false"); |
|||
} |
|||
}); |
|||
|
|||
}; |
|||
})(jQuery); |
|||
abp.modals.FeatureManagement = function () { |
|||
$('.FeatureValueCheckbox').change(function () { |
|||
if (this.checked) { |
|||
$(this).val('true'); |
|||
} else { |
|||
$(this).val('false'); |
|||
} |
|||
}); |
|||
}; |
|||
})(jQuery); |
|||
|
|||
Loading…
Reference in new issue