OSDN Git Service

1d04b04f84a17e161a8934871e36773459c9f918
[eos/base.git] / zephyr / client / app / route / executionPage / executionPage.controller.js
1 'use strict';
2
3 angular.module('zephyrApp')
4 .controller('ExecutionpageCtrl', function ($scope, $location, api) {
5     var command = $location.path().replace("/executionPage/","");
6     $scope.opts = api('option/'+command);
7     $scope.command = command;
8 });