e8fd5a0352
This finally fixes and adds some integration tests to make sure that `select2('data')` works as we are expecting. This also adds tests for `select2('val')` and fixes undefined variable issues that were spotted because of these tests. We also no longer date stamp distribution builds. This closes https://github.com/select2/select2/issues/3104.
20 lines
661 B
HTML
20 lines
661 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="vendor/qunit-1.14.0.css" type="text/css" />
|
|
<link rel="stylesheet" href="../../dist/css/select2.css" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<div id="qunit"></div>
|
|
<div id="qunit-fixture"></div>
|
|
|
|
<script src="vendor/qunit-1.14.0.js" type="text/javascript"></script>
|
|
<script src="vendor/jquery-1.7.2.js" type="text/javascript"></script>
|
|
<script src="../dist/js/select2.full.js" type="text/javascript"></script>
|
|
|
|
<script src="helpers.js" type="text/javascript"></script>
|
|
|
|
<script src="integration/select2-methods.js" type="text/javascript"></script>
|
|
</body>
|
|
</html>
|