Fix JavaScript style error causing CI failures

The Drone JS style checker was complaining about the bad quotes.
This commit is contained in:
Tim Heap 2015-10-10 13:22:34 +11:00
parent 8e00899233
commit b85d6dab3f

View file

@ -237,9 +237,9 @@ function InlinePanel(opts) {
var addButton = $('#' + opts.formsetPrefix + '-ADD');
if (forms.length >= opts.maxForms) {
addButton.addClass("disabled");
addButton.addClass('disabled');
} else {
addButton.removeClass("disabled");
addButton.removeClass('disabled');
}
}
};