Select Git revision
currency-controllers.js
Forked from
clients / Cesium-grp / Cesium
Source project has a limited visibility.
-
Benoit Lavenier authoredBenoit Lavenier authored
currency-controllers.js 10.93 KiB
angular.module('cesium.currency.controllers', ['ngFileSaver', 'cesium.services'])
.config(function($stateProvider) {
'ngInject';
$stateProvider
.state('app.currency', {
url: "/currency",
views: {
'menuContent': {
templateUrl: "templates/currency/view_currency.html",
controller: 'CurrencyViewCtrl'
}
},
data: {
large: 'app.currency_lg'
}
})
.state('app.currency.tab_parameters', {
url: "/parameters",
views: {
'tab-parameters': {
templateUrl: "templates/currency/tabs/tab_parameters.html"
}
}
})
.state('app.currency.tab_wot', {
url: "/community",
views: {
'tab-wot': {
templateUrl: "templates/currency/tabs/tab_wot.html"
}
}
})
.state('app.currency.tab_network', {
url: "/network",
views: {
'tab-network': {
templateUrl: "templates/currency/tabs/tab_network.html",
controller: 'NetworkLookupCtrl'
}
}
})
.state('app.currency.tab_blocks', {
url: "/blocks",
views: {
'tab-blocks': {
templateUrl: "templates/currency/tabs/tab_blocks.html",
controller: 'BlockLookupCtrl'
}
}
})
.state('app.currency_lg', {
url: "/currency/lg",
cache: false,
views: {
'menuContent': {
templateUrl: "templates/currency/view_currency_lg.html",
controller: 'CurrencyViewCtrl'
}
}
})
;