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', 'googlechart', 'ngCordova', 'ng-mfb' ]) .controller('zmApp.AppCtrl', function($scope, $ionicSideMenuDelegate) { $scope.openMenu = function () { $ionicSideMenuDelegate.toggleLeft(); }; });