This commit is contained in:
Baris Soner Usakli
2014-01-20 15:35:17 -05:00
4 changed files with 7 additions and 3 deletions

View File

@@ -114,7 +114,7 @@ define(function() {
for (var x = 0; x < numThemes; x++) {
var theme = bootswatch.themes[x];
themeEl.setAttribute('data-css', theme.cssMin);
themeEl.setAttribute('data-css', theme.cssCdn);
themeEl.setAttribute('data-theme', theme.name);
themeEl.innerHTML = '<img src="' + theme.thumbnail + '" />' +
'<div>' +

View File

@@ -39,6 +39,10 @@
languageCode = 'cz';
break;
case 'zh_cn':
languageCode = 'zh-CN';
break;
default:
languageCode = config.defaultLang;
break;