Last active
June 30, 2017 02:27
-
-
Save matthiaskern/2b57de135bf11b62f67b to your computer and use it in GitHub Desktop.
Revisions
-
matthiaskern revised this gist
Mar 4, 2016 . 1 changed file with 6 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -8,6 +8,7 @@ if(!(window.jQuery)) { logItems(); } var json; function logItems(){ var map = $("#timeline").children().map(function(){ if($(this).hasClass("section")){ @@ -25,6 +26,8 @@ function logItems(){ return links; } }).get(); json = JSON.stringify(map, undefined, 2); console.log(json); } // type copy(json) -
matthiaskern created this gist
Mar 4, 2016 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,30 @@ if(!(window.jQuery)) { var script = document.createElement("script"); script.setAttribute("src", "https://code.jquery.com/jquery-2.2.1.min.js"); script.setAttribute("type", "text/javascript"); script.onload = logItems; document.getElementsByTagName("head")[0].appendChild(script); } else { logItems(); } function logItems(){ var map = $("#timeline").children().map(function(){ if($(this).hasClass("section")){ return; } else{ var elements = $(this).children(); var links = elements.map(function(){ var el = $(this); return { title: el.data("title"), url: el.data("alternate-link") }; }).get(); return links; } }).get(); console.log(JSON.stringify(map, undefined, 2)); }