[SensorBall]update SensorBall(tizen_2.1)
authorji.ji <ji.ji@samsung.com>
Mon, 29 Apr 2013 02:18:16 +0000 (11:18 +0900)
committerji.ji <ji.ji@samsung.com>
Mon, 29 Apr 2013 02:18:16 +0000 (11:18 +0900)
Change-Id: I5adb3b4abd1d57a320c0560288ee711e38ac64f2

LICENSE.Flora
config.xml
js/main.js

index 9c95663..fd90a36 100644 (file)
@@ -1,6 +1,6 @@
 Flora License
 
-Version 1.0, May, 2012
+Version 1.0, April, 2013
 
 http://floralicense.org/license/
 
@@ -67,8 +67,8 @@ on behalf of whom a Contribution has been received by Licensor and
 subsequently incorporated within the Work.
 
 "Tizen Certified Platform" shall mean a software platform that complies
-with the standards set forth in the Compatibility Definition Document
-and passes the Compatibility Test Suite as defined from time to time
+with the standards set forth in the Tizen Compliance Specification
+and passes the Tizen Compliance Tests as defined from time to time
 by the Tizen Technical Steering Group and certified by the Tizen
 Association or its designated agent.
 
index 11551fe..5f60786 100644 (file)
@@ -11,6 +11,6 @@
        <tizen:privilege name="http://tizen.org/privilege/application.launch" />
        <tizen:privilege name="http://tizen.org/privilege/systeminfo" />
        <tizen:setting screen-orientation="portrait"
-               context-menu="disable" background-support="enable" encryption="disable"
+               context-menu="disable" background-support="disable" encryption="disable"
                install-location="auto" />
 </widget>
index 8106633..90ac3a4 100644 (file)
@@ -467,6 +467,10 @@ var app = {
 
 $(document).ready(function () {
        "use strict";
+
+    var contentHeight = screen.availHeight - $('div[data-role="header"]').outerHeight() - $('div[data-role="footer"]').outerHeight();
+       $('div[data-role="content"]').css('height',contentHeight-33);
+
        var img;
        app.gameWidth = window.innerWidth;
 
@@ -508,4 +512,4 @@ $(document).ready(function () {
 $(window).resize(function() {
        app.gameWidth = $(window).width();
        app.gameHeight = $('.background').outerHeight();
-});
\ No newline at end of file
+});