forked from josdejong/jsoneditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
abc3ac3
commit e4c5657
Showing
4 changed files
with
26 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ | |
* | ||
* @author Jos de Jong, <[email protected]> | ||
* @version 3.2.0 | ||
* @date 2015-01-25 | ||
* @date 2015-02-10 | ||
*/ | ||
(function webpackUniversalModuleDefinition(root, factory) { | ||
if(typeof exports === 'object' && typeof module === 'object') | ||
|
@@ -1481,6 +1481,17 @@ return /******/ (function(modules) { // webpackBootstrap | |
return $1 + '"' + $2 + '"' + $3; | ||
}); | ||
|
||
//Strips only jQuery's JSONP | ||
// if(jsonString.match(/.*jQuery.+?\(/)){ | ||
// var jsonStringTemp = jsonString.replace(/.*jQuery.+?\(/,''); | ||
// jsonString = jsonStringTemp.replace(/\)(?!.*\));?/g,''); | ||
// } | ||
|
||
//Clear json's surrounding (for example: 123{"a":"b"}456 => {"a":"b"}) | ||
jsonString = jsonString.replace(/[^{]*/,'');//remove all characters before first "{" (match first not '{') | ||
|
||
jsonString = jsonString.replace(/([^}])(?!.*(\}))/g,'');//remove all characters after last "}" (match first not '}' which does not have following '}') | ||
|
||
return jsonString; | ||
}; | ||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters