[shared] Added appy.shared.data.vatEuroCountries, which is the list of countries of the euro zone.

This commit is contained in:
Gaetan Delannay 2012-12-20 16:09:05 +01:00
parent 6d0d2ea591
commit bba7c589be
3 changed files with 10 additions and 3 deletions

View file

@ -214,7 +214,10 @@ function setSubTitles(value) {
// Function that toggles the value for showing/hiding sub-titles.
function toggleSubTitles() {
// Get the current value
var value = readCookie('showSubTitles');
if (value == null) value = 'true';
// Toggle the value
var newValue = 'true';
if (value == 'true') newValue = 'false';
setSubTitles(newValue);