How to add Google Analytics snippet

Share on print
Share on facebook
Share on linkedin
Share on whatsapp
Share on email

In the Style Library of the Appspace Intranet site collection, go to beezy > js and edit the file beezy.customizations.js. You could put the Google Analytics code snippet into that file.

Please, remember to do a backup of the file prior to performing any version upgrade of Appspace Intranet.

In order to use the beezy.customizations.js file, functions must be encapsulated within certain functions. An example is shown below:

window.BeezyCustomizations = {

  init : function() {

    BeezyApp.define('myFunction', [], 

      function(myFunction) {

        // Your code

    });

  }

}