Created
October 12, 2018 08:09
-
-
Save denisz/69c1bb77c86106e51c08dd0d7d41e6e1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var lang = $("html").attr("lang"); | |
var _prices = { | |
"en": { | |
Basic : ["8 528", "16 692", "32 659", "47 900"], | |
Standart : [0, "32 659", "63 867", "93 623"], | |
Optimal : [0, "63 867", "124 831", "182 892"], | |
Expert : [0, "124 831", "243 855", "357 054"], | |
Unreal : [0, 0, "476 099", "696 730"], | |
Epic : [0, 0, "928 973", "1 358 623"] | |
}, | |
"ru": { | |
Basic : ["8 528", "16 692", "32 659", "47 900"], | |
Standart : [0, "32 659", "63 867", "93 623"], | |
Optimal : [0, "63 867", "124 831", "182 892"], | |
Expert : [0, "124 831", "243 855", "357 054"], | |
Unreal : [0, 0, "476 099", "696 730"], | |
Epic : [0, 0, "928 973", "1 358 623"] | |
} | |
}; | |
var prices = _prices[lang]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment