Updated Modello web samples from upstream 55/30755/1 tizen_3.0.m14.3_ivi
authorAlice Liu <alice.liu@intel.com>
Tue, 25 Nov 2014 05:30:16 +0000 (13:30 +0800)
committerAlice Liu <alice.liu@intel.com>
Tue, 25 Nov 2014 05:30:16 +0000 (13:30 +0800)
Package version up (3.0.32).

Change-Id: I7d604f70eac1f7bd9f5c0119bd6efa474bd837b4
Signed-off-by: Alice Liu <alice.liu@intel.com>
package/changelog
package/pkginfo.manifest
samples/web/Sample/Tizen/Web App/ModelloDashboard/project/js/main.js

index 32023cf..df3d10f 100644 (file)
@@ -1,3 +1,7 @@
+* 3.0.32
+* Updated Modello web samples from upstream
+== Alice Liu <alice.liu@intel.com> 2014-11-25
+
 * 3.0.31
 * Updated Modello web samples from upstream
 == Alice Liu <alice.liu@intel.com> 2014-11-17
index 207775c..2924534 100644 (file)
@@ -1,4 +1,4 @@
-Version:3.0.31
+Version:3.0.32
 Maintainer: Alice Liu<alice.liu@intel.com>
 
 Package:ivi-3.0-web-sample
index 45dff1d..0be0cb8 100644 (file)
@@ -97,6 +97,14 @@ var init = function () {
         $('#bottomPanel').bottomPanel('init', 'withoutBack');
         $("#topBarIcons").topBarIconsPlugin('init');
 
+       tizen.vehicle.vehicleSpeed.get().then(
+               function(vSpeed){
+                       dashBoardIndicator.onSpeedChanged(vSpeed.speed);
+               },
+               function(){
+                       console.log("Modello Dashboard failed to get Vehicle Speed");
+               });
+
         bootstrap.carIndicator.addListener({
             /* this si for steeringWheel game controler */
             onSteeringWheelAngleChanged : function(newValue){
@@ -170,4 +178,4 @@ var init = function () {
     });
 };
 
-$(document).ready(init);
\ No newline at end of file
+$(document).ready(init);