From 372fa585c263eb221d932e5940dc10a30ef438b4 Mon Sep 17 00:00:00 2001 From: Vincent Bortone Date: Thu, 31 Jan 2013 00:37:41 -0500 Subject: [PATCH] Add more tests of static methods. --- jsoneditoronline/jsoneditoronline-tests.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/jsoneditoronline/jsoneditoronline-tests.ts b/jsoneditoronline/jsoneditoronline-tests.ts index a5afd2c6cc..d2196e1bcd 100644 --- a/jsoneditoronline/jsoneditoronline-tests.ts +++ b/jsoneditoronline/jsoneditoronline-tests.ts @@ -17,11 +17,12 @@ var json = { }; editor.set(json); editor.expandAll(); +console.log(JSONEditor.getInternetExplorerVersion()); var jsonResult:any = editor.get(); var options2: JSONFormatterOptions = { - "indentation": 2 + indentation: 2 }; var formatter: JSONFormatter = new JSONFormatter(container, options); var json2 = { @@ -34,4 +35,4 @@ var json2 = { }; formatter.set(json2); -var jsonResult2:any = formatter.get(json2); \ No newline at end of file +var jsonResult2:any = formatter.get(); \ No newline at end of file