Skip to content

Instantly share code, notes, and snippets.

@bluehallu
Created April 23, 2014 09:12
Show Gist options
  • Save bluehallu/11208188 to your computer and use it in GitHub Desktop.
Save bluehallu/11208188 to your computer and use it in GitHub Desktop.
sidemenu demo patch
.state('register', {
url: "/register",
templateUrl: "templates/register.html",
controller: 'RegisterCtrl',
onEnter: function ($state) {
//$state.go('app.playlists');
}
})
.controller('RegisterCtrl', function ($scope,$state) {
$scope.register = function () {
$state.go('app.playlists');
}
})
<button ng-click="register()">Register</button>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment