JIRA - fix N_SE-46403 removing code from popup message
authormaciej moczulski <m.moczulski@samsung.com>
Thu, 18 Jul 2013 09:50:52 +0000 (11:50 +0200)
committerheeju.joo <heeju.joo@samsung.com>
Mon, 29 Jul 2013 00:52:46 +0000 (09:52 +0900)
Change-Id: I08f10ca8330cc5100987881bb19a9ea57b012f80

demos/tizen-winsets/widgets/splitview.html

index f80cdab..3d10665 100644 (file)
@@ -77,9 +77,9 @@
                                downContents = testSplitview.splitview( "pane", "#down" );
 
                        contents = "* Up pane: \n" +
-                                               ( ( typeof upContents === "undefined" || !upContents ) ? "" : upContents[ 0 ].outerHTML ) + "\n" +
+                                               ( ( typeof upContents === "undefined" || !upContents ) ? "" : upContents[ 0 ].text() ) + "\n" +
                                                "* Down pane: \n" +
-                                               ( ( typeof downContents === "undefined" || !downContents ) ? "" : downContents[ 0 ].outerHTML );
+                                               ( ( typeof downContents === "undefined" || !downContents ) ? "" : downContents[ 0 ].text() );
 
                        contents = contents.substring(0, 120) + "..." ;
                        $( ".splitview-popup" ).text( contents );