<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>
</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>
var _appURL;
var _resultXML;
-function updateTestsTitle() {
+function updateToolTitle() {
var version = '';
$.ajax({
async : false,
);
}
});
- $("#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() {
}
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);
}
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);
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);