Skip to content

Commit

Permalink
ios fix
Browse files Browse the repository at this point in the history
  • Loading branch information
scholtz committed Dec 14, 2015
1 parent c525917 commit 28902c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/site.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ function nacitajKraje(){
for (var key in election.cities) {
options.append($("<option />").text(key));
}
if(!iOSVersion()){
if(!iOSversion()){
options.select2({width:"100%"});
}
nastavKraj();
Expand All @@ -110,7 +110,7 @@ function nastavKraj(){
options.append($("<option />").text(key));
}
nastavOkres();
if(!iOSVersion()){
if(!iOSversion()){
options.select2({width:"100%"});
}
}
Expand All @@ -123,7 +123,7 @@ function nastavOkres(){
options.append($("<option />").val(key).text(election.cities[kraj][okres][key][10]));
}
nastavObec();
if(!iOSVersion()){
if(!iOSversion()){
options.select2({width:"100%"});
}
}
Expand Down

0 comments on commit 28902c1

Please sign in to comment.