5 if (Modernizr.localstorage) {
7 audiobooks = JSON.parse(localStorage["audiobook-history"]);
13 Object.keys(audiobooks).forEach(function(slug) {
14 [ts, media_id, time] = audiobooks[slug];
15 latest.push([ts, slug]);
17 latest.sort().reverse().forEach(function(item) {
19 $newitem = $('<div style="display:inline-block;"></div>'); // remove from history
20 $("#last-audiobooks").append($newitem);
23 "/katalog/lektura/" + slug + "/mini_box.html",
27 $("#personal-history").slideDown("slow");