Skip to content

Instantly share code, notes, and snippets.

@jakecraige
Created October 9, 2013 14:17
Show Gist options
  • Save jakecraige/6902046 to your computer and use it in GitHub Desktop.
Save jakecraige/6902046 to your computer and use it in GitHub Desktop.
eventPlanningApp.controller 'ActivityParkingCtrl', ($scope, Message, Activities, NativeNavigation) ->
$scope.activity = Activities.current()
$scope.update = ()->
Activities.update $scope.activity
Message.broadcast 'updateActivity'
NativeNavigation.back()
$scope.open = (page) ->
NativeNavigation.goTo('views/eventPlanning/'+page+'.html')
$scope.back = ()->
NativeNavigation.back()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment