@ -1,7 +1,7 @@
/ * !
/ * !
VéritéCo Timeline Loader 0.6
VéritéCo Timeline Loader 0.61
Designed and built by Zach Wise digitalartwork . net
Designed and built by Zach Wise digitalartwork . net
Date : May 27 , 2012
Date : May 29 , 2012
This program is free software : you can redistribute it and / or modify
This program is free software : you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
it under the terms of the GNU General Public License as published by
@ -22,18 +22,32 @@
=== === === === === === === === === === === === === === === === == * /
=== === === === === === === === === === === === === === === === == * /
// @codekit-prepend "../lib/Embed.LoadLib.js";
// @codekit-prepend "../lib/Embed.LoadLib.js";
/ * R E P L A C E T H I S W I T H Y O U R B A S E P A T H F O R T I M E L I N E
var WebFontConfig ;
=== === === === === === === === === === === === === === === === == * /
var timeline _path = "http://embed.verite.co/timeline/" ;
if ( typeof timeline _path == 'undefined' || typeof timeline _path == 'undefined' ) {
// REPLACE WITH YOUR BASEPATH IF YOU WANT OTHERWISE IT WILL TRY AND FIGURE IT OUT
var timeline _path = getScriptPath ( "timeline-embed.js" ) . split ( "js/" ) [ 0 ] ;
}
function getScriptPath ( scriptname ) {
var scriptTags = document . getElementsByTagName ( 'script' ) ,
script _path = "" ;
for ( var i = 0 ; i < scriptTags . length ; i ++ ) {
if ( scriptTags [ i ] . src . match ( scriptname ) ) {
script _path = scriptTags [ i ] . src ;
}
}
return script _path . split ( '?' ) [ 0 ] . split ( '/' ) . slice ( 0 , - 1 ) . join ( '/' ) + '/' ;
}
/ * T I M E L I N E L O A D E R
/ * T I M E L I N E L O A D E R
=== === === === === === === === === === === === === === === === == * /
=== === === === === === === === === === === === === === === === == * /
( function ( ) {
( function ( ) {
/ * V A R S
/ * V A R S
=== === === === === === === === === === === === === === === === == * /
=== === === === === === === === === === === === === === === === == * /
var timelinejs , t , te , x , isCDN = false ,
var timelinejs , t , te , x , isCDN = false ,
timeline _js _version = "1.49" ,
timeline _js _version = "1.51 " ,
jquery _version _required = "1.7.1" ,
jquery _version _required = "1.7.1" ,
jquery _version = "" ,
jquery _version = "" ,
ready = {
ready = {
@ -57,9 +71,9 @@ var timeline_path = "http://embed.verite.co/timeline/";
locale : timeline _path + "js/locale/" ,
locale : timeline _path + "js/locale/" ,
jquery : "http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" ,
jquery : "http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" ,
font : {
font : {
google : false ,
css : timeline _path + "css/themes/font/" ,
css : timeline _path + "css/themes/font/" ,
js : "http://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js" ,
js : "http://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js"
google : [ 'Bevan::latin' , 'Pontano+Sans::latin' ]
}
}
} ,
} ,
embed _config = {
embed _config = {
@ -73,8 +87,23 @@ var timeline_path = "http://embed.verite.co/timeline/";
font : 'default' ,
font : 'default' ,
css : path . css + 'timeline.css?' + timeline _js _version ,
css : path . css + 'timeline.css?' + timeline _js _version ,
js : path . js + 'timeline-min.js?' + timeline _js _version
js : path . js + 'timeline-min.js?' + timeline _js _version
} ;
} ,
font _presets = [
{ name : "Merriweather-NewsCycle" , google : [ 'News+Cycle:400,700:latin' , 'Merriweather:400,700,900:latin' ] } ,
{ name : "PoiretOne-Molengo" , google : [ 'Poiret+One::latin' , 'Molengo::latin' ] } ,
{ name : "Arvo-PTSans" , google : [ 'Arvo:400,700,400italic:latin' , 'PT+Sans:400,700,400italic:latin' ] } ,
{ name : "PTSerif-PTSans" , google : [ 'PT+Sans:400,700,400italic:latin' , 'PT+Serif:400,700,400italic:latin' ] } ,
{ name : "DroidSerif-DroidSans" , google : [ 'Droid+Sans:400,700:latin' , 'Droid+Serif:400,700,400italic:latin' ] } ,
{ name : "Lekton-Molengo" , google : [ 'Lekton:400,700,400italic:latin' , 'Molengo::latin' ] } ,
{ name : "NixieOne-Ledger" , google : [ 'Nixie+One::latin' , 'Ledger::latin' ] } ,
{ name : "AbrilFatface-Average" , google : [ 'Average::latin' , 'Abril+Fatface::latin' ] } ,
{ name : "PlayfairDisplay-Muli" , google : [ 'Playfair+Display:400,400italic:latin' , 'Muli:300,400,300italic,400italic:latin' ] } ,
{ name : "Rancho-Gudea" , google : [ 'Rancho::latin' , 'Gudea:400,700,400italic:latin' ] } ,
{ name : "Bevan-PotanoSans" , google : [ 'Bevan::latin' , 'Pontano+Sans::latin' ] } ,
{ name : "BreeSerif-OpenSans" , google : [ 'Bree+Serif::latin' , 'Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800:latin' ] } ,
{ name : "SansitaOne-Kameron" , google : [ 'Sansita+One::latin' , 'Kameron:400,700:latin' ] } ,
{ name : "Pacifico-Arimo" , google : [ 'Pacifico::latin' , 'Arimo:400,700,400italic,700italic:latin' ] }
] ;
/ * B U I L D C O N F I G
/ * B U I L D C O N F I G
@ -127,79 +156,45 @@ var timeline_path = "http://embed.verite.co/timeline/";
timeline _config = embed _config ;
timeline _config = embed _config ;
createTimelineDiv ( ) ;
createTimelineDiv ( ) ;
/ * L o a d
/ * L o a d C S S
=== === === === === === === === === === === === === === === === == * /
=== === === === === === === === === === === === === === === === == * /
LazyLoad . css ( embed _config . css , onloaded _css ) ;
LazyLoad . css ( embed _config . css , onloaded _css ) ;
// Load Font
/ * L o a d F O N T
=== === === === === === === === === === === === === === === === == * /
if ( embed _config . font == "default" ) {
if ( embed _config . font == "default" ) {
ready . font . js = true ;
ready . font . js = true ;
ready . font . css = true ;
ready . font . css = true ;
} else {
} else {
// FONT CSS
// Load Font CSS
var fn ;
if ( embed _config . font . match ( "/" ) ) {
if ( embed _config . font . match ( "/" ) ) {
path . font . css = embed _config . font ;
fn = embed _config . font . split ( ".css" ) [ 0 ] . split ( "/" ) ;
path . font . name = fn [ fn . length - 1 ] ;
path . font . css = embed _config . font ;
} else {
} else {
path . font . css = path . font . css + embed _config . font + ".css?" + timeline _js _version ;
path . font . css = path . font . css + embed _config . font + ".css?" + timeline _js _version ;
}
}
LazyLoad . css ( path . font . css , onloaded _font _css ) ;
LazyLoad . css ( path . font . css , onloaded _font _css ) ;
// Load Font JS
// FONT GOOGLE JS
switch ( embed _config . font ) {
for ( var i = 0 ; i < font _presets . length ; i ++ ) {
case "Merriweather-NewsCycle" :
if ( path . font . name == font _presets [ i ] . name ) {
path . font . google = [ 'News+Cycle:400,700:latin' , 'Merriweather:400,700,900:latin' ] ;
path . font . google = true ;
break ;
WebFontConfig = { google : { families : font _presets [ i ] . google } } ;
case "PoiretOne-Molengo" :
}
path . font . google = [ 'Poiret+One::latin' , 'Molengo::latin' ] ;
break ;
case "Arvo-PTSans" :
path . font . google = [ 'Arvo:400,700,400italic:latin' , 'PT+Sans:400,700,400italic:latin' ] ;
break ;
case "PTSerif-PTSans" :
path . font . google = [ 'PT+Sans:400,700,400italic:latin' , 'PT+Serif:400,700,400italic:latin' ] ;
break ;
case "DroidSerif-DroidSans" :
path . font . google = [ 'Droid+Sans:400,700:latin' , 'Droid+Serif:400,700,400italic:latin' ] ;
break ;
case "Lekton-Molengo" :
path . font . google = [ 'Lekton:400,700,400italic:latin' , 'Molengo::latin' ] ;
break ;
case "NixieOne-Ledger" :
path . font . google = [ 'Nixie+One::latin' , 'Ledger::latin' ] ;
break ;
case "AbrilFatface-Average" :
path . font . google = [ 'Average::latin' , 'Abril+Fatface::latin' ] ;
break ;
case "PlayfairDisplay-Muli" :
path . font . google = [ 'Playfair+Display:400,400italic:latin' , 'Muli:300,400,300italic,400italic:latin' ] ;
break ;
case "Rancho-Gudea" :
path . font . google = [ 'Rancho::latin' , 'Gudea:400,700,400italic:latin' ] ;
break ;
case "Bevan-PotanoSans" :
path . font . google = [ 'Bevan::latin' , 'Pontano+Sans::latin' ] ;
break ;
case "BreeSerif-OpenSans" :
path . font . google = [ 'Bree+Serif::latin' , 'Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800:latin' ] ;
break ;
case "SansitaOne-Kameron" :
path . font . google = [ 'Sansita+One::latin' , 'Kameron:400,700:latin' ] ;
break ;
case "Pacifico-Arimo" :
path . font . google = [ 'Pacifico::latin' , 'Arimo:400,700,400italic,700italic:latin' ] ;
break ;
default :
path . font . google = [ 'News+Cycle:400,700:latin' , 'Merriweather:400,700,900:latin' ] ;
}
}
WebFontConfig = { google : { families : path . font . google } } ;
if ( path . font . google ) {
LazyLoad . js ( path . font . js , onloaded _font _js ) ;
LazyLoad . js ( path . font . js , onloaded _font _js ) ;
} else {
ready . font . js = true ;
}
}
}
// Load jQuery
/ * L o a d j Q u e r y
=== === === === === === === === === === === === === === === === == * /
try {
try {
ready . has _jquery = jQuery ;
ready . has _jquery = jQuery ;
ready . has _jquery = true ;
ready . has _jquery = true ;