forked from jackocnr/intl-tel-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spec.html
117 lines (61 loc) · 3.67 KB
/
spec.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Jasmine Spec Runner</title>
<link rel="shortcut icon" type="image/png" href=".grunt/grunt-contrib-jasmine/jasmine_favicon.png">
<link rel="stylesheet" type="text/css" href=".grunt/grunt-contrib-jasmine/jasmine.css">
<link rel="stylesheet" type="text/css" href="build/css/intlTelInput.css">
</head>
<body>
<script src=".grunt/grunt-contrib-jasmine/jasmine.js"></script>
<script src=".grunt/grunt-contrib-jasmine/jasmine-html.js"></script>
<script src=".grunt/grunt-contrib-jasmine/json2.js"></script>
<script src=".grunt/grunt-contrib-jasmine/boot.js"></script>
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="node_modules/jasmine-jquery/lib/jasmine-jquery.js"></script>
<script src="node_modules/es6-promise/dist/es6-promise.auto.js"></script>
<script src="node_modules/custom-event-polyfill/polyfill.js"></script>
<script src="src/spec/helpers/helpers.js"></script>
<script src="src/js/data.js"></script>
<script src="build/js/intlTelInput.min.js"></script>
<script src="build/js/utils.js"></script>
<script src="src/spec/tests/core/closecountrydropdownEvent.js"></script>
<script src="src/spec/tests/core/countrychangeEvent.js"></script>
<script src="src/spec/tests/core/dropdownShortcuts.js"></script>
<script src="src/spec/tests/core/initialValues.js"></script>
<script src="src/spec/tests/core/multipleInstances.js"></script>
<script src="src/spec/tests/core/usingDropdown.js"></script>
<script src="src/spec/tests/core/usingInput.js"></script>
<script src="src/spec/tests/methods/destroy.js"></script>
<script src="src/spec/tests/methods/getExtension.js"></script>
<script src="src/spec/tests/methods/getNumber.js"></script>
<script src="src/spec/tests/methods/getNumberType.js"></script>
<script src="src/spec/tests/methods/getSelectedCountryData.js"></script>
<script src="src/spec/tests/methods/getValidationError.js"></script>
<script src="src/spec/tests/methods/isValidNumber.js"></script>
<script src="src/spec/tests/methods/setCountry.js"></script>
<script src="src/spec/tests/methods/setNumber.js"></script>
<script src="src/spec/tests/methods/setPlaceholderNumberType.js"></script>
<script src="src/spec/tests/options/allowDropdown.js"></script>
<script src="src/spec/tests/options/autoHideDialCode.js"></script>
<script src="src/spec/tests/options/autoPlaceholder.js"></script>
<script src="src/spec/tests/options/customContainer.js"></script>
<script src="src/spec/tests/options/customPlaceholder.js"></script>
<script src="src/spec/tests/options/dropdownContainer.js"></script>
<script src="src/spec/tests/options/excludeCountries.js"></script>
<script src="src/spec/tests/options/formatOnDisplay.js"></script>
<script src="src/spec/tests/options/geoIpLookup.js"></script>
<script src="src/spec/tests/options/initialCountry.js"></script>
<script src="src/spec/tests/options/nationalMode.js"></script>
<script src="src/spec/tests/options/onlyCountries.js"></script>
<script src="src/spec/tests/options/placeholderNumberType.js"></script>
<script src="src/spec/tests/options/preferredCountries.js"></script>
<script src="src/spec/tests/options/separateDialCode.js"></script>
<script src="src/spec/tests/options/utilsScript.js"></script>
<script src="src/spec/tests/static/defaults.js"></script>
<script src="src/spec/tests/static/getCountryData.js"></script>
<script src="src/spec/tests/static/loadUtils.js"></script>
<script src=".grunt/grunt-contrib-jasmine/reporter.js"></script>
</body>
</html>