(text)
| 216 | } |
| 217 | |
| 218 | function parseJsonForDiff(text) { |
| 219 | if (window.FHJsonAutoUtils && typeof window.FHJsonAutoUtils.parseJSONLike === 'function') { |
| 220 | const parsed = window.FHJsonAutoUtils.parseJSONLike(text, { |
| 221 | nestedEscapeParse: true |
| 222 | }); |
| 223 | if (parsed) return parsed.value; |
| 224 | } |
| 225 | return JSON.parse(text); |
| 226 | } |
| 227 | |
| 228 | window.vueApp = new Vue({ |
| 229 | el: '#pageContainer', |