mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
13 lines
260 B
JavaScript
13 lines
260 B
JavaScript
---
|
|
name: simple
|
|
component: ionSideMenus
|
|
---
|
|
var app = angular.module('simple', ['ionic']);
|
|
app.controller('SideMenusSimpleCtrl', function($scope, $ionicSideMenuDelegate) {
|
|
|
|
$scope.toggleLeft = function() {
|
|
$ionicSideMenuDelegate.toggleLeft();
|
|
};
|
|
|
|
});
|