Browse Source

Added localization for wikipedia. closes #109

pull/127/head
Zach Wise 13 years ago
parent
commit
3c2df8295b
  1. 6
      compiled/js/locale/de.js
  2. 6
      compiled/js/locale/en.js
  3. 6
      compiled/js/locale/es.js
  4. 6
      compiled/js/locale/fr.js
  5. 6
      compiled/js/locale/is.js
  6. 6
      compiled/js/locale/it.js
  7. 32
      compiled/js/locale/ja.js
  8. 6
      compiled/js/locale/kr.js
  9. 6
      compiled/js/locale/nl.js
  10. 6
      compiled/js/locale/pt-br.js
  11. 6
      compiled/js/locale/zh-ch.js
  12. 6
      compiled/js/locale/zh-tw.js
  13. 2
      compiled/js/timeline-embed.js
  14. 6
      compiled/js/timeline-min.js
  15. 27
      compiled/js/timeline.js
  16. 4
      source/js/VMM.ExternalAPI.js
  17. 10
      source/js/VMM.Language.js
  18. 2
      source/js/VMM.Slider.js
  19. 6
      source/js/VMM.Timeline.TimeNav.js
  20. 5
      source/js/VMM.Timeline.js
  21. 8
      source/js/locale/de.js
  22. 8
      source/js/locale/en.js
  23. 9
      source/js/locale/es.js
  24. 9
      source/js/locale/fr.js
  25. 9
      source/js/locale/is.js
  26. 9
      source/js/locale/it.js
  27. 9
      source/js/locale/ja.js
  28. 9
      source/js/locale/kr.js
  29. 9
      source/js/locale/nl.js
  30. 9
      source/js/locale/pt-br.js
  31. 9
      source/js/locale/zh-ch.js
  32. 9
      source/js/locale/zh-tw.js
  33. 12
      source/js/timeline-embed.js

6
compiled/js/locale/de.js

File diff suppressed because one or more lines are too long

6
compiled/js/locale/en.js

File diff suppressed because one or more lines are too long

6
compiled/js/locale/es.js

File diff suppressed because one or more lines are too long

6
compiled/js/locale/fr.js

File diff suppressed because one or more lines are too long

6
compiled/js/locale/is.js

File diff suppressed because one or more lines are too long

6
compiled/js/locale/it.js

File diff suppressed because one or more lines are too long

32
compiled/js/locale/ja.js

File diff suppressed because one or more lines are too long

6
compiled/js/locale/kr.js

File diff suppressed because one or more lines are too long

6
compiled/js/locale/nl.js

File diff suppressed because one or more lines are too long

6
compiled/js/locale/pt-br.js

File diff suppressed because one or more lines are too long

6
compiled/js/locale/zh-ch.js

File diff suppressed because one or more lines are too long

6
compiled/js/locale/zh-tw.js

File diff suppressed because one or more lines are too long

2
compiled/js/timeline-embed.js

File diff suppressed because one or more lines are too long

6
compiled/js/timeline-min.js vendored

File diff suppressed because one or more lines are too long

27
compiled/js/timeline.js

@ -2174,8 +2174,8 @@ if(typeof VMM != 'undefined' && typeof VMM.ExternalAPI == 'undefined') {
}
}
_wiki = "<h4><a href='http://en.wikipedia.org/wiki/" + wiki_title + "' target='_blank'>" + wiki_title + "</a></h4>";
_wiki += "<div class='wiki-source'>From Wikipedia, the free encyclopedia</span>";
_wiki = "<h4><a href='http://" + VMM.master_config.language.api.wikipedia + ".wikipedia.org/wiki/" + wiki_title + "' target='_blank'>" + wiki_title + "</a></h4>";
_wiki += "<div class='wiki-source'>" + VMM.master_config.language.messages.wikipedia + "</span>";
_wiki += VMM.Util.linkify_wikipedia(wiki_text);
if (wiki_extract.match("REDIRECT")) {
@ -3026,7 +3026,7 @@ if(typeof VMM != 'undefined' && typeof VMM.Slider == 'undefined') {
// HANDLE SMALLER SIZES
var is_skinny = false;
if (current_width <= 600) {
if (current_width <= 640) {
is_skinny = true;
} else if (VMM.Browser.device == "mobile" && VMM.Browser.orientation == "portrait") {
is_skinny = true;
@ -4581,10 +4581,14 @@ if(typeof VMM != 'undefined' && typeof VMM.LoadLib == 'undefined') {
Begin VMM.Language.js
***********************************************/
/* LANGUAGE
/* DEFAULT LANGUAGE
================================================== */
if(typeof VMM != 'undefined' && typeof VMM.Language == 'undefined') {
VMM.Language = {
lang: "en",
api: {
wikipedia: "en"
},
date: {
month: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
month_abbr: ["Jan.", "Feb.", "March", "April", "May", "June", "July", "Aug.", "Sept.", "Oct.", "Nov.", "Dec."],
@ -4606,7 +4610,9 @@ if(typeof VMM != 'undefined' && typeof VMM.Language == 'undefined') {
loading_timeline: "Loading Timeline... ",
return_to_title: "Return to Title",
expand_timeline: "Expand Timeline",
contract_timeline: "Contract Timeline"
contract_timeline: "Contract Timeline",
wikipedia: "From Wikipedia, the free encyclopedia",
loading_content: "Loading Content"
}
}
};
@ -5951,9 +5957,10 @@ if(typeof VMM != 'undefined' && typeof VMM.Timeline == 'undefined') {
trace('TIMELINE INIT');
VMM.Util.date.setLanguage(VMM.Timeline.Config.language);
VMM.master_config.language = VMM.Timeline.Config.language;
$feedback = VMM.appendAndGetElement($timeline, "<div>", "feedback", "");
$messege = VMM.appendAndGetElement($feedback, "<div>", "messege", VMM.Timeline.Config.language.messages.loading_timeline);
$messege = VMM.appendAndGetElement($feedback, "<div>", "messege", VMM.master_config.language.messages.loading_timeline);
VMM.bindEvent(global, onDataReady, config.events.data_ready);
VMM.bindEvent(global, showMessege, config.events.messege);
@ -5980,7 +5987,7 @@ if(typeof VMM != 'undefined' && typeof VMM.Timeline == 'undefined') {
this.reload = function(_d) {
trace("loadNewDates" + _d);
$messege = VMM.appendAndGetElement($feedback, "<div>", "messege", VMM.Timeline.Config.language.messages.loading_timeline);
$messege = VMM.appendAndGetElement($feedback, "<div>", "messege", VMM.master_config.language.messages.loading_timeline);
data = {};
VMM.Timeline.DataObj.getData(_d);
};
@ -7085,7 +7092,7 @@ if(typeof VMM.Timeline != 'undefined' && typeof VMM.Timeline.TimeNav == 'undefin
$backhome = VMM.appendAndGetElement($toolbar, "<div>", "back-home", "<div class='icon'></div>");
VMM.bindEvent(".back-home", onBackHome, "click");
VMM.Lib.css($toolbar, "top", 27);
VMM.Lib.attribute($backhome, "title", VMM.Timeline.Config.language.messages.return_to_title);
VMM.Lib.attribute($backhome, "title", VMM.master_config.language.messages.return_to_title);
VMM.Lib.attribute($backhome, "rel", "tooltip");
}
@ -7093,9 +7100,9 @@ if(typeof VMM.Timeline != 'undefined' && typeof VMM.Timeline.TimeNav == 'undefin
$zoomin = VMM.appendAndGetElement($toolbar, "<div>", "zoom-in", "<div class='icon'></div>");
$zoomout = VMM.appendAndGetElement($toolbar, "<div>", "zoom-out", "<div class='icon'></div>");
VMM.Lib.attribute($zoomin, "title", VMM.Timeline.Config.language.messages.expand_timeline);
VMM.Lib.attribute($zoomin, "title", VMM.master_config.language.messages.expand_timeline);
VMM.Lib.attribute($zoomin, "rel", "tooltip");
VMM.Lib.attribute($zoomout, "title", VMM.Timeline.Config.language.messages.contract_timeline);
VMM.Lib.attribute($zoomout, "title", VMM.master_config.language.messages.contract_timeline);
VMM.Lib.attribute($zoomout, "rel", "tooltip");
$toolbar.tooltip({selector: "div[rel=tooltip]", placement: "right"})

4
source/js/VMM.ExternalAPI.js

@ -621,8 +621,8 @@ if(typeof VMM != 'undefined' && typeof VMM.ExternalAPI == 'undefined') {
}
}
_wiki = "<h4><a href='http://en.wikipedia.org/wiki/" + wiki_title + "' target='_blank'>" + wiki_title + "</a></h4>";
_wiki += "<div class='wiki-source'>From Wikipedia, the free encyclopedia</span>";
_wiki = "<h4><a href='http://" + VMM.master_config.language.api.wikipedia + ".wikipedia.org/wiki/" + wiki_title + "' target='_blank'>" + wiki_title + "</a></h4>";
_wiki += "<div class='wiki-source'>" + VMM.master_config.language.messages.wikipedia + "</span>";
_wiki += VMM.Util.linkify_wikipedia(wiki_text);
if (wiki_extract.match("REDIRECT")) {

10
source/js/VMM.Language.js

@ -1,7 +1,11 @@
/* LANGUAGE
/* DEFAULT LANGUAGE
================================================== */
if(typeof VMM != 'undefined' && typeof VMM.Language == 'undefined') {
VMM.Language = {
lang: "en",
api: {
wikipedia: "en"
},
date: {
month: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
month_abbr: ["Jan.", "Feb.", "March", "April", "May", "June", "July", "Aug.", "Sept.", "Oct.", "Nov.", "Dec."],
@ -23,7 +27,9 @@ if(typeof VMM != 'undefined' && typeof VMM.Language == 'undefined') {
loading_timeline: "Loading Timeline... ",
return_to_title: "Return to Title",
expand_timeline: "Expand Timeline",
contract_timeline: "Contract Timeline"
contract_timeline: "Contract Timeline",
wikipedia: "From Wikipedia, the free encyclopedia",
loading_content: "Loading Content"
}
}
};

2
source/js/VMM.Slider.js

@ -337,7 +337,7 @@ if(typeof VMM != 'undefined' && typeof VMM.Slider == 'undefined') {
// HANDLE SMALLER SIZES
var is_skinny = false;
if (current_width <= 600) {
if (current_width <= 640) {
is_skinny = true;
} else if (VMM.Browser.device == "mobile" && VMM.Browser.orientation == "portrait") {
is_skinny = true;

6
source/js/VMM.Timeline.TimeNav.js

@ -910,7 +910,7 @@ if(typeof VMM.Timeline != 'undefined' && typeof VMM.Timeline.TimeNav == 'undefin
$backhome = VMM.appendAndGetElement($toolbar, "<div>", "back-home", "<div class='icon'></div>");
VMM.bindEvent(".back-home", onBackHome, "click");
VMM.Lib.css($toolbar, "top", 27);
VMM.Lib.attribute($backhome, "title", VMM.Timeline.Config.language.messages.return_to_title);
VMM.Lib.attribute($backhome, "title", VMM.master_config.language.messages.return_to_title);
VMM.Lib.attribute($backhome, "rel", "tooltip");
}
@ -918,9 +918,9 @@ if(typeof VMM.Timeline != 'undefined' && typeof VMM.Timeline.TimeNav == 'undefin
$zoomin = VMM.appendAndGetElement($toolbar, "<div>", "zoom-in", "<div class='icon'></div>");
$zoomout = VMM.appendAndGetElement($toolbar, "<div>", "zoom-out", "<div class='icon'></div>");
VMM.Lib.attribute($zoomin, "title", VMM.Timeline.Config.language.messages.expand_timeline);
VMM.Lib.attribute($zoomin, "title", VMM.master_config.language.messages.expand_timeline);
VMM.Lib.attribute($zoomin, "rel", "tooltip");
VMM.Lib.attribute($zoomout, "title", VMM.Timeline.Config.language.messages.contract_timeline);
VMM.Lib.attribute($zoomout, "title", VMM.master_config.language.messages.contract_timeline);
VMM.Lib.attribute($zoomout, "rel", "tooltip");
$toolbar.tooltip({selector: "div[rel=tooltip]", placement: "right"})

5
source/js/VMM.Timeline.js

@ -316,9 +316,10 @@ if(typeof VMM != 'undefined' && typeof VMM.Timeline == 'undefined') {
trace('TIMELINE INIT');
VMM.Util.date.setLanguage(VMM.Timeline.Config.language);
VMM.master_config.language = VMM.Timeline.Config.language;
$feedback = VMM.appendAndGetElement($timeline, "<div>", "feedback", "");
$messege = VMM.appendAndGetElement($feedback, "<div>", "messege", VMM.Timeline.Config.language.messages.loading_timeline);
$messege = VMM.appendAndGetElement($feedback, "<div>", "messege", VMM.master_config.language.messages.loading_timeline);
VMM.bindEvent(global, onDataReady, config.events.data_ready);
VMM.bindEvent(global, showMessege, config.events.messege);
@ -345,7 +346,7 @@ if(typeof VMM != 'undefined' && typeof VMM.Timeline == 'undefined') {
this.reload = function(_d) {
trace("loadNewDates" + _d);
$messege = VMM.appendAndGetElement($feedback, "<div>", "messege", VMM.Timeline.Config.language.messages.loading_timeline);
$messege = VMM.appendAndGetElement($feedback, "<div>", "messege", VMM.master_config.language.messages.loading_timeline);
data = {};
VMM.Timeline.DataObj.getData(_d);
};

8
source/js/locale/de.js

@ -4,6 +4,10 @@
if(typeof VMM != 'undefined') {
VMM.debug = false;
VMM.Language = {
lang: "de",
api: {
wikipedia: "de"
},
date: {
month: ["Jänner", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"],
month_abbr: ["Jän.", "Feb.", "März", "Apr.", "Mai", "Juni", "Juli", "Aug.", "Sept.", "Okt.", "Nov.", "Dez."],
@ -25,7 +29,9 @@ if(typeof VMM != 'undefined') {
loading_timeline: "Chronologie wird geladen...",
return_to_title: "Zurück zum Anfang",
expand_timeline: "Chronologie vergrößern",
contract_timeline: "Chronologie verkleinern"
contract_timeline: "Chronologie verkleinern",
wikipedia: "From Wikipedia, the free encyclopedia",
loading_content: "Loading Content"
}
}
}

8
source/js/locale/en.js

@ -4,6 +4,10 @@
if(typeof VMM != 'undefined') {
VMM.debug = false;
VMM.Language = {
lang: "en",
api: {
wikipedia: "en"
},
date: {
month: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
month_abbr: ["Jan.", "Feb.", "March", "April", "May", "June", "July", "Aug.", "Sept.", "Oct.", "Nov.", "Dec."],
@ -25,7 +29,9 @@ if(typeof VMM != 'undefined') {
loading_timeline: "Loading Timeline... ",
return_to_title: "Return to Title",
expand_timeline: "Expand Timeline",
contract_timeline: "Contract Timeline"
contract_timeline: "Contract Timeline",
wikipedia: "From Wikipedia, the free encyclopedia",
loading_content: "Loading Content"
}
}
}

9
source/js/locale/es.js

@ -4,6 +4,10 @@
if(typeof VMM != 'undefined') {
VMM.debug = false;
VMM.Language = {
lang: "es",
api: {
wikipedia: "es"
},
date: {
month: ["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"],
month_abbr: ["Ene.","Feb.","Mar.","Abr.","May.","Jun.","Jul.","Ago.","Sep.","Oct.","Nov.","Dic."],
@ -25,7 +29,10 @@ if(typeof VMM != 'undefined') {
loading_timeline: "Cronología esta cargando",
return_to_title: "Volver al título",
expand_timeline: "Enlargar la cronología",
contract_timeline: "Reducir la cronología"
contract_timeline: "Reducir la cronología",
wikipedia: "Desde Wikipedia, la enciclopedia libre",
loading_content: "Loading Content"
}
}
}

9
source/js/locale/fr.js

@ -4,6 +4,10 @@
if(typeof VMM != 'undefined') {
VMM.debug = false;
VMM.Language = {
lang: "fr",
api: {
wikipedia: "fr"
},
date: {
month: ["janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre"],
month_abbr: ["janv.", "févr.", "mars", "avril", "mai", "juin", "juil.", "août", "sept.", "oct.", "nov.", "dec."],
@ -25,7 +29,10 @@ if(typeof VMM != 'undefined') {
loading_timeline: "Chargement de la frise en cours... ",
return_to_title: "Retour à la page d'accueil",
expand_timeline: "Elargir la frise",
contract_timeline: "Réduire la frise"
contract_timeline: "Réduire la frise",
wikipedia: "Extrait de Wikipedia, l'encyclopédie libre",
loading_content: "Loading Content"
}
}
}

9
source/js/locale/is.js

@ -4,6 +4,10 @@
if(typeof VMM != 'undefined') {
VMM.debug = false;
VMM.Language = {
lang: "is",
api: {
wikipedia: "is"
},
date: {
month: ["janúar", "febrúar", "mars", "apríl", "maí", "júní", "júlí", "ágúst", "september", "október", "nóvember", "desember"],
month_abbr: ["jan.", "feb.", "mars", "apríl", "maí", "júní", "júlí", "ágúst", "sept.", "okt.", "nóv.", "des."],
@ -25,7 +29,10 @@ if(typeof VMM != 'undefined') {
loading_timeline: "Raða upp tímalínu... ",
return_to_title: "Til baka á forsíðu",
expand_timeline: "Stækka tímalínu",
contract_timeline: "Minnka tímalínu"
contract_timeline: "Minnka tímalínu",
wikipedia: "From Wikipedia, the free encyclopedia",
loading_content: "Loading Content"
}
}
}

9
source/js/locale/it.js

@ -4,6 +4,10 @@
if(typeof VMM != 'undefined') {
VMM.debug = false;
VMM.Language = {
lang: "it",
api: {
wikipedia: "it"
},
date: {
month: ["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settebre","Ottobre","Novembre","Dicembre"],
month_abbr: ["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],
@ -25,7 +29,10 @@ if(typeof VMM != 'undefined') {
loading_timeline: "Loading Timeline... ",
return_to_title: "Return to Title",
expand_timeline: "Expand Timeline",
contract_timeline: "Contract Timeline"
contract_timeline: "Contract Timeline",
wikipedia: "From Wikipedia, the free encyclopedia",
loading_content: "Loading Content"
}
}
}

9
source/js/locale/ja.js

@ -4,6 +4,10 @@
if(typeof VMM != 'undefined') {
VMM.debug = false;
VMM.Language = {
lang: "ja",
api: {
wikipedia: "ja"
},
date: {
month: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"],
month_abbr: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"],
@ -25,7 +29,10 @@ if(typeof VMM != 'undefined') {
loading_timeline: "Loading Timeline... ",
return_to_title: "Return to Title",
expand_timeline: "Expand Timeline",
contract_timeline: "Contract Timeline"
contract_timeline: "Contract Timeline",
wikipedia: "From Wikipedia, the free encyclopedia",
loading_content: "Loading Content"
}
}
}

9
source/js/locale/kr.js

@ -4,6 +4,10 @@
if(typeof VMM != 'undefined') {
VMM.debug = false;
VMM.Language = {
lang: "kr",
api: {
wikipedia: "kr"
},
date: {
month: ["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],
month_abbr: ["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],
@ -25,7 +29,10 @@ if(typeof VMM != 'undefined') {
loading_timeline: "Loading Timeline... ",
return_to_title: "Return to Title",
expand_timeline: "Expand Timeline",
contract_timeline: "Contract Timeline"
contract_timeline: "Contract Timeline",
wikipedia: "From Wikipedia, the free encyclopedia",
loading_content: "Loading Content"
}
}
}

9
source/js/locale/nl.js

@ -4,6 +4,10 @@
if(typeof VMM != 'undefined') {
VMM.debug = false;
VMM.Language = {
lang: "nl",
api: {
wikipedia: "nl"
},
date: {
month: ["januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december"],
month_abbr: ["jan", "febr", "ma", "apr", "mei", "juni", "juli", "aug", "sept", "okt", "nov", "dec"],
@ -25,7 +29,10 @@ if(typeof VMM != 'undefined') {
loading_timeline: "Tijdlijn laden ... ",
return_to_title: "Terug naar het begin",
expand_timeline: "Tijdlijn uitzoomen",
contract_timeline: "Tijdlijn inzoomen"
contract_timeline: "Tijdlijn inzoomen",
wikipedia: "From Wikipedia, the free encyclopedia",
loading_content: "Loading Content"
}
}
}

9
source/js/locale/pt-br.js

@ -4,6 +4,10 @@
if(typeof VMM != 'undefined') {
VMM.debug = false;
VMM.Language = {
lang: "pt-br",
api: {
wikipedia: "pt"
},
date: {
month: ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"],
month_abbr: ["Jan.", "Fev.", "Mar.", "Abr.", "Mai.", "Jun.", "Jul.", "Ago.", "Set.", "Out.", "Nov.", "Dez."],
@ -25,7 +29,10 @@ if(typeof VMM != 'undefined') {
loading_timeline: "Carregando Timeline... ",
return_to_title: "Voltar para o título",
expand_timeline: "Expandir Timeline",
contract_timeline: "Contrair Timeline"
contract_timeline: "Contrair Timeline",
wikipedia: "From Wikipedia, the free encyclopedia",
loading_content: "Loading Content"
}
}
}

9
source/js/locale/zh-ch.js

@ -4,6 +4,10 @@
if(typeof VMM != 'undefined') {
VMM.debug = false;
VMM.Language = {
lang: "zh-ch",
api: {
wikipedia: "zh"
},
date: {
month: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
month_abbr: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
@ -25,7 +29,10 @@ if(typeof VMM != 'undefined') {
loading_timeline: "加载时间线... ",
return_to_title: "回到开头",
expand_timeline: "伸展时间",
contract_timeline: "缩短时间"
contract_timeline: "缩短时间",
wikipedia: "From Wikipedia, the free encyclopedia",
loading_content: "Loading Content"
}
}
}

9
source/js/locale/zh-tw.js

@ -4,6 +4,10 @@
if(typeof VMM != 'undefined') {
VMM.debug = false;
VMM.Language = {
lang: "zh-tw",
api: {
wikipedia: "zh"
},
date: {
month: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
month_abbr: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
@ -25,7 +29,10 @@ if(typeof VMM != 'undefined') {
loading_timeline: "Loading Timeline... ",
return_to_title: "Return to Title",
expand_timeline: "Expand Timeline",
contract_timeline: "Contract Timeline"
contract_timeline: "Contract Timeline",
wikipedia: "From Wikipedia, the free encyclopedia",
loading_content: "Loading Content"
}
}
}

12
source/js/timeline-embed.js

@ -71,10 +71,10 @@
var embed_config = {
width: 800,
height: 600,
source: 'taylor/data.json',
source: 'https://docs.google.com/spreadsheet/pub?key=0Agl_Dv6iEbDadFYzRjJPUGktY0NkWXFUWkVIZDNGRHc&output=html',
font: 'default',
css: 'http://veritetimeline.appspot.com/latest/timeline.css',
js: 'http://veritetimeline.appspot.com/latest/timeline-min.js'
css: 'http://embed.verite.co/timeline/css/timeline.css',
js: 'http://embed.verite.co/timeline/js/timeline-min.js'
}
if (typeof timeline_config == 'object') {
@ -101,9 +101,9 @@
var cssReady = false;
var fontCSSReady = false;
var fontJSReady = false;
var base_path = "http://veritetimeline.appspot.com/latest/";
var js_url = "http://veritetimeline.appspot.com/latest/";
var font_css_url = "http://veritetimeline.appspot.com/latest/themes/font/"
var base_path = "http://embed.verite.co/timeline/";
var js_url = "http://embed.verite.co/timeline/js/";
var font_css_url = "http://embed.verite.co/timeline/css/themes/font/"
var font_js_url = "http://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js";
var font_google = [ 'News+Cycle:400,700:latin', 'Merriweather:400,700,900:latin' ];
var isReady = false;

Loading…
Cancel
Save