summaryrefslogtreecommitdiff
path: root/www/js/controllers.js
blob: 05500e0c319eadc62b39d3c1b683a124f85d8b7d (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', 'ngCordova', 'ng-mfb','angularCircularNavigation' ])

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