UNPKG
bootswatch
Version:
latest (5.3.7)
latest-4 (4.6.2)
next (4.0.0-beta.3)
old (3.4.1)
5.3.7
5.3.6
5.3.5
5.3.3
5.3.2
5.3.1
5.3.0
5.2.3
5.2.2
5.2.1
5.2.0
5.1.3
5.1.2
5.1.1
5.1.0
5.0.2
5.0.1
5.0.0
4.6.2
4.6.1
4.6.0
4.5.3
4.5.2
4.5.1
4.5.0
4.4.1
4.4.0
4.3.1
4.2.1
4.1.3
4.1.2
4.1.1
4.1.0
4.0.0
4.0.0-beta.3
4.0.0-beta.2
4.0.0-alpha.6
3.4.1
3.4.0
3.3.7
3.3.6
3.3.5
3.3.4
3.3.2
3.3.1
3.3.0
3.2.0
3.0.0
Bootswatch is a collection of themes for Bootstrap.
bootswatch.com
thomaspark/bootswatch
bootswatch
/
bower_components
/
jquery
/
src
/
ajax
/
parseJSON.js
14 lines
(10 loc)
•
222 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
define
([
"../core"
],
function
(
jQuery
) {
// Support: Android 2.3
// Workaround failure to string-cast null input
jQuery.
parseJSON
=
function
(
data
) {
return
JSON
.
parse
( data +
""
); };
return
jQuery.
parseJSON
; });