kinderspiele1/www/js/home_controller.js
Hilmer, Carsten 685c34cff8 Refactoring
2016-11-09 16:23:52 +01:00

23 lines
731 B
JavaScript

appControllers.controller('home', function($scope, $ionicPlatform, $cordovaMedia, $state, backgroundsounds_mediahandler ) {
$scope.showmentor=false;
$ionicPlatform.ready(function() {
var mediastartesuchspiel = new Media('/android_asset/www/sounds/suchspiel.mp3', suchspiel_intro_finish,null);
$scope.mediastartesuchspiel=mediastartesuchspiel;
backgroundsounds_mediahandler.playbackgroundmusic();
});
$scope.suchspiel_intro = function(){
$scope.showmentor=true;
$scope.mediastartesuchspiel.play();
$scope.mediastartesuchspiel.setVolume('1.0');
}
function suchspiel_intro_finish() {
$scope.mediastartesuchspiel.release();
$scope.showmentor=false;
$state.go('suchspiel');
}
});