/**
 * Copyright © 2019 Imagine. All rights reserved.
 * See COPYING.txt for license details.
 */
define([
    'jquery'
], function ($) {
    'use strict';
    $.widget('tealium.popin', {
        _create: function(){
            var self = this;
            var data = self.options.data;
            this.element.on('modalopened',function(event){
                if(data.eventValue == "price"){
                    data.eventValue = $(".product-top-info-content-inner .price-exclude-decimal-currency").html() + $(".product-top-info-content-inner .price-decimal-value").html() + $(".product-top-info-content-inner .price-currency-symbol").html();
                }
                
                if (typeof utag !== 'undefined') {
                    utag.link(data);
                }
            });
        }
    });
    return $.tealium.popin;
});