From: Youmin Ha Date: Mon, 7 Jan 2013 06:13:39 +0000 (+0900) Subject: demo: Add word-wrap:break-word and remove parag. width X-Git-Tag: accepted/tizen_2.1/20130425.023924~7^2~267 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ad6a0964ea5ee36b19aa033ec8e7c28cdf8eb0d8;p=platform%2Fframework%2Fweb%2Fweb-ui-fw.git demo: Add word-wrap:break-word and remove parag. width A page in Tizen widget demo app has a long word, which overflows the screen width. A claim is issued in Tizen JIRA, pointing this overflow, so this patch adds word-wrap:break-word option to separate long words into two line. And, paragraph width settings for sample code are removed, not to hide some code area. Solves N_SE-18310 and N_SE-19030. Change-Id: I731a283e5a4e851ef5dc27e9750b84ffb3072c3d --- diff --git a/demos/tizen-winsets/tips/custom-globalize-culture/custom-globalize-culture.html b/demos/tizen-winsets/tips/custom-globalize-culture/custom-globalize-culture.html index 1395b26..cbabacc 100644 --- a/demos/tizen-winsets/tips/custom-globalize-culture/custom-globalize-culture.html +++ b/demos/tizen-winsets/tips/custom-globalize-culture/custom-globalize-culture.html @@ -4,7 +4,7 @@

Loading custom globalize culture file

-

A predefined Globalize culture file is loaded by the loader in Tizen Web UI Framework, according to the current language. If you want to load additional culture file, you can create each culture files, and let to choose one of them to load it by using $.tizen.util.loadCustomGlobalizeCulture() API.

+

A predefined Globalize culture file is loaded by the loader in Tizen Web UI Framework, according to the current language. If you want to load additional culture file, you can create each culture files, and let to choose one of them to load it by using $.tizen.util.loadCustomGlobalizeCulture() API.


diff --git a/demos/tizen-winsets/tips/generate-elements-dynamically.html b/demos/tizen-winsets/tips/generate-elements-dynamically.html index f2d08cd..30f5bf6 100755 --- a/demos/tizen-winsets/tips/generate-elements-dynamically.html +++ b/demos/tizen-winsets/tips/generate-elements-dynamically.html @@ -9,7 +9,7 @@
Example #1 Trigger Create
Trigger Create after append element on HTML.
-

$( "#checkboxItems" ).append( newhtml) ;
$( "#checkboxItems" ).trigger( "create" );
@@ -32,7 +32,7 @@ Call buttonMarkup() or trigger "create" to the parent of button.

-

/* Append new button */
var buttonTemplate = "<div data-role='button' data-inline='true' " + "data-icon='call' data-style='circle' " + "data-theme='s' class='newbutton'></div>";
@@ -58,7 +58,7 @@ To add new <LI> element on JQM listview, insert items and call "refresh" to the listview.

-

var listTemplate = "<li>Appended New Item</li>";
$( listTemplate ).appendTo( "#listview" );