From f2c812e9af7d2aa7eef9b0f3d0f55b2d4dc34a4d Mon Sep 17 00:00:00 2001 From: Jinhyuk Jun Date: Sun, 13 Jan 2013 14:35:47 +0900 Subject: [PATCH] tizen demo : bug fix set default padding-right to demo

tag Change-Id: I9da90cf4e886fb343f2b7c32ae4e2ac5dac6383c --- .../widgets/pagelayout/backbutton/back-button-to-header.html | 2 +- .../widgets/pagelayout/backbutton/backbutton-normal.html | 2 +- .../backbutton/dynamically-attatch-backbutton-to-footer.html | 4 ++-- .../backbutton/dynamically-attatch-backbutton-to-header.html | 4 ++-- demos/tizen-winsets/widgets/pagelayout/backbutton/no-back-button.html | 2 +- demos/tizen-winsets/widgets/pagelayout/backbutton/no-footer.html | 2 +- demos/tizen-winsets/widgets/pagelayout/barcontrol.html | 4 ++-- demos/tizen-winsets/widgets/switch/toggleswitch.html | 4 ++-- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/demos/tizen-winsets/widgets/pagelayout/backbutton/back-button-to-header.html b/demos/tizen-winsets/widgets/pagelayout/backbutton/back-button-to-header.html index 88bd221..ff87fed 100755 --- a/demos/tizen-winsets/widgets/pagelayout/backbutton/back-button-to-header.html +++ b/demos/tizen-winsets/widgets/pagelayout/backbutton/back-button-to-header.html @@ -16,7 +16,7 @@ This page declared "data-add-back-btn=header" to page
1. check and draw back button to header

-

+

<div data-role="page" data-add-back-btn="header">
    <div data-role="header" data-position="fixed">
        <h1>back button sample</h1>
diff --git a/demos/tizen-winsets/widgets/pagelayout/backbutton/backbutton-normal.html b/demos/tizen-winsets/widgets/pagelayout/backbutton/backbutton-normal.html index 1323371..a35e449 100755 --- a/demos/tizen-winsets/widgets/pagelayout/backbutton/backbutton-normal.html +++ b/demos/tizen-winsets/widgets/pagelayout/backbutton/backbutton-normal.html @@ -15,7 +15,7 @@ Web Developer declare back btn option and make footer
back button displayed right bottom side of footer


-

+

<div data-role="page" data-add-Back-Btn="true">
    <div data-role="header" data-position="fixed">
        <h1>back button sample</h1>
diff --git a/demos/tizen-winsets/widgets/pagelayout/backbutton/dynamically-attatch-backbutton-to-footer.html b/demos/tizen-winsets/widgets/pagelayout/backbutton/dynamically-attatch-backbutton-to-footer.html index cb5595d..3bcfaf7 100755 --- a/demos/tizen-winsets/widgets/pagelayout/backbutton/dynamically-attatch-backbutton-to-footer.html +++ b/demos/tizen-winsets/widgets/pagelayout/backbutton/dynamically-attatch-backbutton-to-footer.html @@ -16,7 +16,7 @@ but need to add back button dynamically
call page("addBackBtn", target) API

-

+

<div data-role="page">
    <div data-role="header" data-position="fixed">
        <h1>back button sample</h1>
@@ -29,7 +29,7 @@


-

+

<script>
  $(".ui-page-active").page( "addBackBtn", "footer" );
</script>
diff --git a/demos/tizen-winsets/widgets/pagelayout/backbutton/dynamically-attatch-backbutton-to-header.html b/demos/tizen-winsets/widgets/pagelayout/backbutton/dynamically-attatch-backbutton-to-header.html index 7eadbee..4697367 100755 --- a/demos/tizen-winsets/widgets/pagelayout/backbutton/dynamically-attatch-backbutton-to-header.html +++ b/demos/tizen-winsets/widgets/pagelayout/backbutton/dynamically-attatch-backbutton-to-header.html @@ -16,7 +16,7 @@ but need to add back button dynamically in header
call page("addBackBtn", target) API

-

+

<div data-role="page">
    <div data-role="header" data-position="fixed">
        <h1>back button sample</h1>
@@ -29,7 +29,7 @@


-

+

<script>
  $(".ui-page-active").page( "addBackBtn", "header" );
</script>
diff --git a/demos/tizen-winsets/widgets/pagelayout/backbutton/no-back-button.html b/demos/tizen-winsets/widgets/pagelayout/backbutton/no-back-button.html index ce710ee..e47a5a1 100755 --- a/demos/tizen-winsets/widgets/pagelayout/backbutton/no-back-button.html +++ b/demos/tizen-winsets/widgets/pagelayout/backbutton/no-back-button.html @@ -14,7 +14,7 @@ Web Developer defines footer in page
no page option declared

-

+

<div data-role="page">
    <div data-role="header" data-position="fixed">
        <h1>back button sample</h1>
diff --git a/demos/tizen-winsets/widgets/pagelayout/backbutton/no-footer.html b/demos/tizen-winsets/widgets/pagelayout/backbutton/no-footer.html index e6e53f9..869c59a 100755 --- a/demos/tizen-winsets/widgets/pagelayout/backbutton/no-footer.html +++ b/demos/tizen-winsets/widgets/pagelayout/backbutton/no-footer.html @@ -15,7 +15,7 @@ This page show only header & content in page

-

+

<div data-role="page">
    <div data-role="header" data-position="fixed">
        <h1>no footer sample</h1>
diff --git a/demos/tizen-winsets/widgets/pagelayout/barcontrol.html b/demos/tizen-winsets/widgets/pagelayout/barcontrol.html index 704dce2..32a9c62 100755 --- a/demos/tizen-winsets/widgets/pagelayout/barcontrol.html +++ b/demos/tizen-winsets/widgets/pagelayout/barcontrol.html @@ -17,7 +17,7 @@

-

+

var $elPage = $( ".ui-page-active" );

$elPage.find( ".ui-header" ).hide();
$elPage.page( "refresh" );

@@ -32,7 +32,7 @@

-

+

var $elPage = $( ".ui-page-active" );

$elPage.find( ".ui-footer" ).hide();
$elPage.page( "refresh" );

diff --git a/demos/tizen-winsets/widgets/switch/toggleswitch.html b/demos/tizen-winsets/widgets/switch/toggleswitch.html index 6be30f0..22abb49 100755 --- a/demos/tizen-winsets/widgets/switch/toggleswitch.html +++ b/demos/tizen-winsets/widgets/switch/toggleswitch.html @@ -15,7 +15,7 @@

Tizen UX toggle switch has image button for on/off.
To display image toggle switch, use jqueryMobile data-role="slider"
then remove text for option tag

-

+

add element's width to css file
<select data-role="slider">
 <option value="off"></option>
@@ -43,7 +43,7 @@

-

+

add element's width to css file
 .containing-element .ui-slider-switch {
  width : 9em;
-- 2.7.4