Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
  • feature/osx-applesilicon
  • 1.6.5_fixed
  • bugfix/osx-bugfixes
  • bugfix/build-ionic
  • feature/no-member-login-browser
  • feature/macos-support
  • feature/ios-support
  • issue_4
  • issue_780
  • gitlab_migration_1
  • dev
  • rml8
  • v1.6.1
  • v1.6.0
  • v1.5.12
  • v1.5.11
  • v1.5.10
  • v1.5.9
  • v1.5.8
  • v1.5.7
  • v1.5.6
  • v1.5.5
  • v1.5.4
  • v1.5.3
  • v1.5.2
  • v1.5.1
  • v1.4.20
  • v1.4.19
  • v1.4.18
  • v1.4.17
  • v1.4.16
  • v1.4.15
33 results

controllers.js

Blame
  • Forked from clients / Cesium-grp / Cesium
    2619 commits behind the upstream repository.
    controllers.js 596 B
    
    angular.module('cesium.controllers', [
        'cesium.app.controllers',
        'cesium.home.controllers',
        'cesium.wallet.controllers',
        'cesium.currency.controllers',
        'cesium.currency-charts.controllers',
        'cesium.wot.controllers',
        'cesium.transfer.controllers',
        'cesium.settings.controllers'
      ])
    
      .config(function($httpProvider) {
        //Enable cross domain calls
       $httpProvider.defaults.useXDomain = true;
    
        //Remove the header used to identify ajax call  that would prevent CORS from working
        delete $httpProvider.defaults.headers.common['X-Requested-With'];
      })
    ;