mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
9887579b61
Avoid relying on jQuery patches. Instead: * use `CSS.escape` instead of `jQuery.escapeSelector` * use `.filter()` with a proper handler instead of `.even()` Keep `jquery-patch.js` for backwards compatibility, though. Also, add tests for jquery-patch. Ref gh-2249
27 lines
493 B
HTML
27 lines
493 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>jQuery UI Form Reset Mixin Test Suite</title>
|
|
|
|
<script src="../../../external/requirejs/require.js"></script>
|
|
<script src="../../lib/css.js"></script>
|
|
<script src="../../lib/bootstrap.js" data-modules="core">
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="qunit"></div>
|
|
<div id="qunit-fixture">
|
|
|
|
<form id="main">
|
|
<input id="input1">
|
|
<input id="input2">
|
|
<input id="input3">
|
|
<input id="input4">
|
|
</form>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|