/**
* Prestaworks AB
*
* NOTICE OF LICENSE
*
* This source file is subject to the End User License Agreement(EULA)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://license.prestaworks.se/license.html
*
* @author Prestaworks AB <info@prestaworks.se>
* @copyright Copyright Prestaworks AB (https://www.prestaworks.se/)
* @license http://license.prestaworks.se/license.html
*/

$( document ).ready(function() {
    if ("" != sveapaypage_url && "undefined" != typeof(pw_sveareplace)) {
        replaceAllCheckoutLinksForSveaCheckout();
    }
});

function replaceAllCheckoutLinksForSveaCheckout()
{
    $.each(pw_sveareplace, function(key, value) {
      $(value).attr("href", sveapaypage_url);
    });
}
 