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() { | |
if (window.mixpanel == undefined) { | |
return; | |
} | |
var mixpanelRegex = /\((.*)\)/; | |
function handleMixpanelTag(tag, $el) { | |
var bits = tag.split(':'); | |
var parametersJson = mixpanelRegex.exec(tag); |
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 GameDisplay(ctx, renderer) | |
{ | |
this.objects = new Array(); | |
this.renderer = renderer; | |
this.addObject = function(object) | |
{ | |
objects.push(Object); | |
} | |
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
/** | |
* hoverIntent is similar to jQuery's built-in "hover" function except that | |
* instead of firing the onMouseOver event immediately, hoverIntent checks | |
* to see if the user's mouse has slowed down (beneath the sensitivity | |
* threshold) before firing the onMouseOver event. | |
* | |
* hoverIntent r5 // 2007.03.27 // jQuery 1.1.2+ | |
* <http://cherne.net/brian/resources/jquery.hoverIntent.html> | |
* | |
* hoverIntent is currently available for use in all personal or commercial |
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
/* -------------------------------------------------------------- | |
reset.css | |
* Resets default browser CSS. | |
-------------------------------------------------------------- */ | |
html, body, div, span, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, abbr, acronym, address, code, |
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
<?php | |
/** | |
* simple script to export mysql database(s) into zip file(s) containing individual tables | |
* | |
* @author Richtermeister | |
*/ | |
//database access params | |
$mysql_host = "localhost"; |