Update footer button size and move version to popup.
authoryugang <yugang.fan@intel.com>
Fri, 26 Apr 2013 04:19:46 +0000 (12:19 +0800)
committeryugang <yugang.fan@intel.com>
Fri, 26 Apr 2013 07:00:29 +0000 (15:00 +0800)
Change-Id: I56a2ade6dd9407e9a161a6e95943f558797ba75a

config.xml
index.html
js/main.js
js/tests.js

index 68038f3..0251f3e 100644 (file)
@@ -35,5 +35,5 @@
     <tizen:privilege name="http://tizen.org/privilege/package.info"/>
     <tizen:privilege name="http://tizen.org/privilege/packagemanager.install"/>
     <tizen:privilege name="http://tizen.org/privilege/setting"/>
-    <tizen:setting screen-orientation="portrait" context-menu="disable" background-support="enable" encryption="disable" install-location="auto"/>
+    <tizen:setting context-menu="disable" background-support="enable" encryption="disable" install-location="auto"/>
 </widget>
index 0866494..d71f98f 100755 (executable)
@@ -92,15 +92,15 @@ Authors:
     </div>
 </div>
 <div data-role="popup" id="popup_view" data-position-to="window" data-theme="e" data-overlay-theme="a">
-<pre id="popupContent"></pre>
+<pre id="popup_content"></pre>
 </div>
 </div>
 </div>
 <script>
-    $('#home_ui').on('pagecreate', function() {
+$('#home_ui').on('pagecreate', function() {
         updateAppDecoration();
-    });
-    updateTestsTitle();
+});
+updateToolTitle();
 </script>
 </body>
 </html>
index d270006..ec5fe56 100755 (executable)
@@ -31,7 +31,7 @@ Authors:
 var _appURL;
 var _resultXML;
 
-function updateTestsTitle() {
+function updateToolTitle() {
     var version = '';
     $.ajax({
         async : false,
@@ -47,7 +47,8 @@ function updateTestsTitle() {
             );
         }
     });
-    $("#tool_title").append("<h1>TCT Behavior Test Tool</h1><a class=\"ui-btn-right\" data-theme=\"a\" style=\"width:20%;\">V:"+version+"</a>");
+    $("#tool_title").empty().append("<h1 style=\"width:75%; margin-left:auto; margin-right:auto;\">TCT Behavior Test Tool</h1><a class=\"ui-btn-right\">"+version+"</a>");
 }
 
 function launchApp() {
@@ -93,7 +94,7 @@ function updateAppDecoration() {
    }
     xmlResult += "  </set>\n</suite>";
     _resultXML = xmlResult;
-    var Contents = $(document).find("#popupContent");
+    var Contents = $(document).find("#popup_content");
     var p = Contents.get(0);
     $(p).text( _resultXML);
 }
@@ -140,3 +141,9 @@ function writeFile(content) {
 
     tizen.filesystem.resolve('documents', onsuccess, onerror, "rw");
 }
+
+function updateFooterButton(){
+    $(':jqmData(role=footer)').find(':jqmData(role=button) > span:first-child').css('padding', '10px 10px 10px 30px');
+}
+
+window.addEventListener('load', updateFooterButton, false);
index 65d461d..375fd03 100755 (executable)
@@ -40,3 +40,9 @@ function reportResult(app, res) {
     sessionStorage[app]= res;
     backAppsHome();
 }
+
+function updateFooterButton(){
+    $(':jqmData(role=footer)').find(':jqmData(role=button) > span:first-child').css('padding', '10px 10px 10px 30px');
+}
+
+$(document).bind('pagecreate', updateFooterButton);