Skip to content
Snippets Groups Projects
Select Git revision
  • d9e8f378cd84e06ff02d8086b1ba75fc57f21bc4
  • master default protected
  • Vivakvo-master-patch-80805
  • patch-26
  • patch-19
  • patch-25
  • patch-24
  • patch-23
  • patch-22
  • patch-21
  • patch-18
  • patch-17
  • Vivakvo-master-patch-99327
  • patch-16
  • patch-15
  • patch-14
  • patch-13
  • patch-12
  • patch-11
  • patch-10
  • patch-9
  • v1.4.1
  • v1.4.0
  • v1.3.11
  • v1.3.10
  • v1.3.9
  • v1.3.8
  • v1.3.7
  • v1.3.6
  • v1.3.5
  • v1.3.4
  • v1.3.3
  • v1.3.2
  • v1.3.1
  • v1.3.0
  • v1.2.10
  • v1.2.9
  • v1.2.8
  • v1.2.7
  • v1.2.6
  • v1.2.5
41 results

registry-controllers.js

Blame
  • Forked from clients / Cesium-grp / Cesium
    360 commits behind the upstream repository.
    registry-controllers.js 41.40 KiB
    angular.module('cesium.es.registry.controllers', ['cesium.es.services', 'cesium.es.common.controllers'])
    
      .config(function($stateProvider) {
        'ngInject';
    
        $stateProvider
    
        .state('app.wot_lookup.tab_registry', {
          url: "/page?q&type&hash&category&location&issuer&reload&lat&lon&d&last",
          views: {
            'tab_registry': {
              templateUrl: "plugins/es/templates/registry/tabs/tab_registry.html",
              controller: 'ESRegistryLookupCtrl'
            }
          },
          data: {
            large: 'app.registry_lookup_lg',
            silentLocationChange: true
          }
        })
    
        .state('app.registry_lookup_lg', {
          url: "/wot/page/lg?q&type&hash&category&location&issuer&reload&lat&lon&d&last",
          views: {
            'menuContent': {
              templateUrl: "plugins/es/templates/registry/lookup_lg.html",
              controller: 'ESRegistryLookupCtrl'
            }
          },
          data: {
            silentLocationChange: true
          }
        })
    
        .state('app.wallet_pages', {
          url: "/account/pages?refresh",
          views: {
            'menuContent': {
              templateUrl: "plugins/es/templates/registry/view_wallet_pages.html",
              controller: 'ESWalletPagesCtrl'
            }
          },
          data: {
            login: true,
            minData: true,
            silentLocationChange: true
          }
        })
    
        .state('app.wallet_pages_by_id', {
          url: "/wallets/:id/pages?refresh",
          views: {
            'menuContent': {
              templateUrl: "plugins/es/templates/registry/view_wallet_pages.html",
              controller: 'ESWalletPagesCtrl'
            }
          },
          data: {
            login: true,
            minData: true,
            silentLocationChange: true
          }
        })
    
        .state('app.view_page', {
          url: "/page/view/:id/:title?refresh",
          views: {
            'menuContent': {
              templateUrl: "plugins/es/templates/registry/view_record.html",
              controller: 'ESRegistryRecordViewCtrl'