23 lines
731 B
JavaScript
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');
|
|
}
|
|
|
|
}); |