@cypress/core-desktop-gui
Version:
Desktop GUI for managing Cypress projects.
15 lines (11 loc) • 388 B
text/coffeescript
@App.module "ProjectsApp", (ProjectsApp, App, Backbone, Marionette, $, _) ->
class Router extends App.Routers.Application
module: ProjectsApp
actions:
list: ->
show: ->
router = new Router
App.vent.on "start:projects:app", ->
router.to "list"
App.vent.on "project:clicked", (project, options) ->
router.to "show", project: project, options: options