Skip to content
Snippets Groups Projects
Select Git revision
  • 4e5179c46d0da8f446f81955eaa508bc81c19a4b
  • main default
  • tp2
  • tp1
  • tp3
  • tp2-correction
  • tp1-correction
  • admins
8 results

calculator.py

Blame
  • Forked from an inaccessible project.
    config.js 740 B
    /**
     * Created by jeremyguiselin on 25/09/2016.
     */
    
    (function (angular){
      "use strict";
      angular.module('Config')
        .constant("constantConfig", {
          "apiClient": "betskills",
          "appStaging": "development",
          "apiUrl": "http://betskills.dev/api/",
          "imgUrl": "http://betskills.dev/img/application/"
        });
      angular.module('Config')
        .constant("notificationConfig",{
          'core': {
            'app_id': 'com.jeremyguiselin.betskills'
          },
          'push': {
            'sender_id': '1006878207346',
            'pluginConfig': {
              'ios': {
                'badge': true,
                'sound': true
              },
              'android': {
                'iconColor': '#343434'
              }
            }
          }
        });
    
    })(angular);