You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should only have the PCI one that is what I was informed by our testing folks who helping us in having optimizely on our web site. Would request you to remove/update the non-PCI compliant snippet and add PCI snippet.
script.src = 'https://cdn-pci.optimizely.com/js/' + key + '.js';
I came across a new change in optimizely, where the script should be changed from https://cdn.optimizely.com/js/key.js to https://cdn-pci.optimizely.com/js/key.js (the difference here is cdn-pci).
We should only have the PCI one that is what I was informed by our testing folks who helping us in having optimizely on our web site. Would request you to remove/update the non-PCI compliant snippet and add PCI snippet.
script.src = 'https://cdn-pci.optimizely.com/js/' + key + '.js';
angular.module('ng-optimizely', ['ng'])
.provider('optimizely', function() {
var key;
var activationEventName = '$viewContentLoaded';
this.setKey = function(val) {
key = val;
};
this.setActivationEventName = function(val) {
activationEventName = val;
};
this.$get = ['$rootScope', '$window', '$timeout', '$q'
, function($rootScope, $window, $timeout, $q) {
var service = $window.optimizely = $window.optimizely || [];
}]});
The text was updated successfully, but these errors were encountered: