// $scope, $element, $attrs, $injector, $sce, $timeout, $http, $ionicPopup, and $ionicPopover services are available
/* Developer functions */
$scope.debug = function() {
console.log($scope.app);
}
/*============================================================================
= Toggling Sub Assembly Logic: Show/Hide, Play, Rewind =
============================================================================*/
/* Setting play of current model in view */
$scope.setPlay = function() {
$scope.$broadcast('app.view["model-1"].svc.play');
}
/* Setting rewind of current model in view */
$scope.setRewind = function() {
$scope.$broadcast('app.view["model-1"].svc.rewind');
}