143 lines
3.7 KiB
JavaScript
Executable File
143 lines
3.7 KiB
JavaScript
Executable File
/*
|
|
* 2007-2014 PrestaShop
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Academic Free License (AFL 3.0)
|
|
* that is bundled with this package in the file LICENSE.txt.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* http://opensource.org/licenses/afl-3.0.php
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to http://www.prestashop.com for more information.
|
|
*
|
|
* @author PrestaShop SA <contact@prestashop.com>
|
|
* @copyright 2007-2014 PrestaShop SA
|
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*/
|
|
|
|
$(document).ready(
|
|
function ()
|
|
{
|
|
$('a').each(function()
|
|
{
|
|
var href = this.href;
|
|
var search = this.search;
|
|
var href_add = 'live_configurator_token=' + get('live_configurator_token')
|
|
+ '&id_shop=' + get('id_shop')
|
|
+ '&id_employee=' + get('id_employee')
|
|
+ '&theme=' + get('theme')
|
|
+ '&theme_font=' + get('theme_font')
|
|
|
|
if (href != undefined && href != '#' && href.substr(0, baseDir.length) == baseDir)
|
|
{
|
|
if (search.length == 0)
|
|
this.search = href_add;
|
|
else
|
|
this.search += '&' + href_add;
|
|
}
|
|
});
|
|
|
|
$('#color-box').find('li').click(
|
|
function()
|
|
{
|
|
location.href = location.href.replace(/&theme=[^&]*/, '')+'&theme='+$(this).attr('class');
|
|
}
|
|
);
|
|
|
|
$('#reset').click(
|
|
function()
|
|
{
|
|
location.href = location.href.replace(/&theme=[^&]*/, '').replace(/&theme_font=[^&]*/, '');
|
|
}
|
|
);
|
|
|
|
$('#font').change(
|
|
function()
|
|
{
|
|
location.href = location.href.replace(/&theme_font=[^&]*/, '')+'&theme_font='+$('#font option:selected').val();
|
|
}
|
|
);
|
|
|
|
$('#gear-right').click(
|
|
function()
|
|
{
|
|
if ($(this).css('left') == '215px')
|
|
{
|
|
$('#tool_customization').animate({left : '-215px'}, 500);
|
|
$(this).animate({left : '0px'}, 500);
|
|
$.totalStorage('live_configurator_visibility', 0);
|
|
}
|
|
else
|
|
{
|
|
$('#tool_customization').animate({left : '0px'}, 500);
|
|
$(this).animate({left : '215px'}, 500);
|
|
$.totalStorage('live_configurator_visibility', 1);
|
|
}
|
|
}
|
|
);
|
|
|
|
$('#font-title').click(
|
|
function()
|
|
{
|
|
if ($(this).children('i').hasClass('icon-caret-down'))
|
|
{
|
|
$(this).children('i').removeClass('icon-caret-down').addClass('icon-caret-up');
|
|
$('#font-box').slideUp();
|
|
}
|
|
else
|
|
{
|
|
$(this).children('i').removeClass('icon-caret-up').addClass('icon-caret-down');
|
|
$('#font-box').slideDown();
|
|
}
|
|
}
|
|
);
|
|
|
|
$('#theme-title').click(
|
|
function()
|
|
{
|
|
if ($(this).children('i').hasClass('icon-caret-down'))
|
|
{
|
|
$(this).children('i').removeClass('icon-caret-down').addClass('icon-caret-up');
|
|
$('#color-box').slideUp();
|
|
}
|
|
else
|
|
{
|
|
$(this).children('i').removeClass('icon-caret-up').addClass('icon-caret-down');
|
|
$('#color-box').slideDown();
|
|
}
|
|
}
|
|
);
|
|
|
|
if (parseInt($.totalStorage('live_configurator_visibility')) == 1)
|
|
{
|
|
$('#tool_customization').animate({left : '0px'}, 200);
|
|
$('#gear-right').animate({left : '215px'}, 200);
|
|
}
|
|
else
|
|
{
|
|
$('#tool_customization').animate({left : '-215px'}, 200);
|
|
$('#gear-right').animate({left : '0px'}, 200);
|
|
}
|
|
|
|
}
|
|
);
|
|
|
|
function get(name)
|
|
{
|
|
var regexS = "[\\?&]" + name + "=([^&#]*)";
|
|
var regex = new RegExp(regexS);
|
|
var results = regex.exec(window.location.href);
|
|
|
|
if (results == null)
|
|
return "";
|
|
else
|
|
return results[1];
|
|
} |