Files
2024-04-19 14:04:41 +07:00

6 lines
263 B
JavaScript

(function($) {
test("chainable", function() {
ok($("#qunit-fixture").lightSlider().addClass("chainable"), "can be chained");
equal($("#qunit-fixture").hasClass("chainable"), true, "class was added correctly from chaining");
});
}(jQuery));