Site Analytics widget does not work and throws "TypeError: Cannot read property 'trackingid' of undefined"DescriptionGoogle Analytics does not track anything, unable to setup the widget-site-analytics widget. There is a console error that reads:"TypeError: Cannot read property 'trackingid' of undefined" .tb_button {padding:1px;cursor:pointer;border-right: 1px solid #8b8b8b;border-left: 1px solid #FFF;border-bottom: 1px solid #fff;}.tb_button.hover {borer:2px outset #def; background-color: #f8f8f8 !important;}.ws_toolbar {z-index:100000} .ws_toolbar .ws_tb_btn {cursor:pointer;border:1px solid #555;padding:3px} .tb_highlight{background-color:yellow} .tb_hide {visibility:hidden} .ws_toolbar img {padding:2px;margin:0px}Steps to Reproduce 1. Login to Orlando Instance2. Insert the following markup into the "Stock Header" widget Body of HTML template field, replacing 'UA-XXXXX-Y' with a tracking ID from a Google Analytics account:<widget id="widget-site-analytics" options="{trackingid: 'UA-XXXXX-Y'}"></widget>3. Navigate to any Service Portal page where the "Stock Header" widget is present, for example: /sp?id=indexObserve the console error and Google Analytics not tracking anything. .tb_button {padding:1px;cursor:pointer;border-right: 1px solid #8b8b8b;border-left: 1px solid #FFF;border-bottom: 1px solid #fff;}.tb_button.hover {borer:2px outset #def; background-color: #f8f8f8 !important;}.ws_toolbar {z-index:100000} .ws_toolbar .ws_tb_btn {cursor:pointer;border:1px solid #555;padding:3px} .tb_highlight{background-color:yellow} .tb_hide {visibility:hidden} .ws_toolbar img {padding:2px;margin:0px}Workaround1. In the Site Analytics widget, remove all use of the 'data.options' property, and instead use 'options'. For example, instead of "c.data.options.trackingid" you have to use "c.options.trackingid". 2. A further error is thrown after you make the first change: "ga.create" is not defined. On the Site Analytics widget, replace:"ga.create('create', ...."with"ga('create', ...." .tb_button {padding:1px;cursor:pointer;border-right: 1px solid #8b8b8b;border-left: 1px solid #FFF;border-bottom: 1px solid #fff;}.tb_button.hover {borer:2px outset #def; background-color: #f8f8f8 !important;}.ws_toolbar {z-index:100000} .ws_toolbar .ws_tb_btn {cursor:pointer;border:1px solid #555;padding:3px} .tb_highlight{background-color:yellow} .tb_hide {visibility:hidden} .ws_toolbar img {padding:2px;margin:0px}Related Problem: PRB1439864