Skip to content
Extraits de code Groupes Projets
piwikAppConfig.js 334 octets
Newer Older
  • Learn to ignore specific revisions
  • angular.module('piwikApp.config', []);
    
    
    (function () {
    
        var piwikAppConfig = angular.module('piwikApp.config');
    
        // we probably want this later as a separate config file, till then it serves as a "bridge"
    
        for (var index in piwik.config) {
            piwikAppConfig.constant(index.toUpperCase(), piwik.config[index])
    
    sgiehl's avatar
    sgiehl a validé
        }
    })();