summaryrefslogtreecommitdiff
path: root/www/js/controllers.js
blob: 914a23bf4ec6f0e36c244226c05fbd441b499413 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* jshint -W041 */
/* jshint browser: true*/
/* global cordova,StatusBar,angular,console */



angular.module('zmApp.controllers', ['ionic', 'ngCordova', 'ng-mfb','angularCircularNavigation'])

.controller('zmApp.AppCtrl', function($scope, $ionicSideMenuDelegate) {
  $scope.openMenu = function () {
    $ionicSideMenuDelegate.toggleLeft();
  };
});