Repository URL to install this package:
|
Version:
5.0.6 ▾
|
$(function() {
$togglePathEditable = function() {
$('input.custom-path').prop('disabled', !$('input.using-custom-path').prop('checked'));
};
$togglePathEditable();
$(document).change('input.using-custom-path', $togglePathEditable);
});