From ad6a0964ea5ee36b19aa033ec8e7c28cdf8eb0d8 Mon Sep 17 00:00:00 2001 From: Youmin Ha Date: Mon, 7 Jan 2013 15:13:39 +0900 Subject: [PATCH] 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 --- .../tips/custom-globalize-culture/custom-globalize-culture.html | 2 +- demos/tizen-winsets/tips/generate-elements-dynamically.html | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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" );
-- 2.7.4