English readme see below
Dieses Skript erlaubt es, alle Episoden eines Jahres von "Notizen aus ..." des Bayerischen Rundfunks auf die Festplate herunterzuladen.
Installation
// based on http://stackoverflow.com/a/13008597 | |
function getTransitionDuration ( element, with_delay ) | |
{ | |
var prefixes = ' webkit moz ms o khtml'.split( ' ' ); | |
var result = 0; | |
var duration, delay, prefix; | |
for ( var i = 0; i < prefixes.length; i++ ) | |
{ | |
prefix = prefixes[i] + '-'; |
/*global define*/ | |
define( | |
function () | |
{ | |
// serializeURL({foo:'bar',one:'two'}) => '?foo=bar&one=two' | |
// serializeURL({foo:'bar',one:'two'}, 'prefix') => '?prefix[foo]=bar&prefix[one]=two' | |
function serializeURL( obj, prefix ) | |
{ | |
var str = [ ]; | |
/*global define*/ | |
/* | |
AMD module for loading files asynchronously. It also stores the contents of the files | |
in the browsers local storage for quicker access. I mostly use it for loading GLSL | |
shader files. Note: This has not been tested extensively, so use with caution. | |
MIT License | |
*/ | |
define( | |
function() | |
{ |
/*global define*/ | |
/* | |
AMD module that loads an image. Caches images. | |
Note: this code has not been tested extensively. Use with caution. | |
MIT License | |
*/ | |
define( | |
function () | |
{ | |
var images = { }; |
.easing-linear { | |
transition-timing-function: linear; | |
} | |
.easing-ease { | |
transition-timing-function: ease; | |
} | |
.easing-easeIn { | |
transition-timing-function: ease-in; |
/*global define*/ | |
define( | |
function () | |
{ | |
return { | |
linear: 'linear', | |
ease: 'ease', | |
easeIn: 'ease-in', | |
easeOut: 'ease-out', | |
easeInOut: 'ease-in-out', |
// Ported to JavaScript from | |
// http://www.migapro.com/circle-and-rotated-rectangle-collision-detection/ | |
// | |
// An example: | |
// var circle: { x: 20, y: 10, radius: 20 }; | |
// var rect: { x: 30, y: 30, width: 100, height: 100, rotation: Math.PI / 2 }; | |
// collideCircleWithRotatedRectangle( circle, rect ); | |
// // returns true. | |
// | |
// |
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Admin</title> | |
<style>body{font-family:sans-serif;padding:50px;}.is-connected{background-color:green}</style> | |
</head> | |
<body> | |
<h1>ADMIN</h1> | |
<script src="spacebrew-1.4.1.js"></script> |
English readme see below
Dieses Skript erlaubt es, alle Episoden eines Jahres von "Notizen aus ..." des Bayerischen Rundfunks auf die Festplate herunterzuladen.
Installation
<!doctype html> | |
<script> | |
var worker = new Worker( 'localforageworker.js' ); | |
</script> |