This file contains 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 characters
div[data-icon='facebook']:before { | |
content: url(http://lorempixel.com/output/nightlife-q-c-128-128-9.jpg); | |
display: inline-block; | |
vertical-align: bottom; | |
} | |
div[data-icon='facebook'] .block { | |
display: inline-block; | |
margin-left: 10px; | |
width: 500px; | |
} |
This file contains 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 characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
</head> | |
<body> | |
<div class="head_images" style="width: 891px;"> | |
<img src="images/bryan_vink_1.jpg"/> | |
<img src="images/bryan_vink_2.jpg"/> |
This file contains 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 characters
var MapArea = function() { | |
}; | |
//pointX, pointY, radius | |
MapArea.prototype.circle = function(circleCords) { | |
var cx = circleCords[0]; | |
var cy = circleCords[1]; | |
var r = circleCords[2]; |
This file contains 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 characters
<!doctype html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Nieuw document</title> | |
<script src="jquery-1.10.2.js"></script> | |
<script src="jquery-ui-1.10.3.custom.min.js"></script> | |
<script src="underscore-min.js"></script> | |
<script src="backbone-min.js"></script> |
This file contains 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 characters
(function() { | |
/** | |
* Provide an interface for navigating through array items. | |
* @constructor | |
* @class | |
* @classdesc | |
* @param {Array} items Any datatype is acceptable in Array form. | |
* @param {Boolean} infinite If set to true: we can navigate from last to first index like an infinite loop. If it set to false infinite loop is impossible. | |
*/ |
This file contains 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 characters
function createQueryString(query) { | |
var parts = []; | |
for (var k in query) { | |
if (query.hasOwnProperty(k)) { | |
parts.push(encodeURIComponent(k) + "=" + encodeURIComponent(query[k])); | |
} | |
} | |
return parts.join('&'); | |
} |
This file contains 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 characters
.flip3D { | |
width:240px; | |
height:200px; | |
float:left; | |
} | |
.flip3D > * { | |
width:240px; | |
height:200px; | |
position:absolute; |
This file contains 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 characters
/* required | |
underscore : http://underscorejs.org/underscore-min.js | |
*/ | |
(function(window, _) { | |
/** | |
* Class for creating simple 2-dimensional grid with columns en rows. It provides query methods for searching a specific cell, row or column. | |
* @param {Object} options Setting columns and rows | |
*/ | |
GridManager = function(options) { |
This file contains 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 characters
(function(OpenLayers, NA, jQuery) { | |
/** | |
* TEIMap draws NA.TranscriptionHotspotLayer and NA.TranscriptionScanLayer on the map surface. The map settings (resolution, view bounds, max zoomlevel) depend on the scan graphic width and height. | |
* @constructor | |
* @augments OpenLayers.Map | |
*/ | |
NA.TEIMap = OpenLayers.Class(OpenLayers.Map, { | |
/** |
This file contains 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 characters
// plugin src: http://www.eyecon.ro/bootstrap-datepicker/ | |
(function(jQuery, _) { | |
angular.module('eyecon-bootstrap-datepicker', []) | |
.directive("eyeconBootstrapDatepicker", function() { | |
return { | |
replace: true, | |
scope: { | |
format : "@", | |
availableDates : "=", | |
selectedDate: "=", |
OlderNewer