blob: 99f85f29825bee50e0dae04f3623087e97c66605 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* jshint -W041 */
/* jshint browser: true*/
/* global cordova,StatusBar,angular,console */
angular.module('zmApp.controllers', ['ionic', 'tc.chartjs', 'ngCordova', 'ng-mfb','angularCircularNavigation' ])
.controller('zmApp.AppCtrl', function($scope, $ionicSideMenuDelegate) {
$scope.openMenu = function () {
$ionicSideMenuDelegate.toggleLeft();
};
});
|