layout | title | date | comments | sharing | footer |
---|---|---|---|---|---|
page |
index |
2013-08-30 12:07 |
false |
false |
true |
Overview
vid.addEventListener('error', function(evt) { | |
logEvent(evt,'red'); | |
}, false); | |
... | |
function logEvent(evt, color) { | |
switch (evt.type) { | |
... | |
case 'error': | |
var error = document.querySelector('video').error; | |
switch (error.code) { |
layout | title | date | comments | sharing | footer |
---|---|---|---|---|---|
page |
index |
2013-08-30 12:07 |
false |
false |
true |
Overview
in our attempts to free ourselves from the harrassment and persecution we have endured from the city of Portland, we have fallen into their trap. Without paying excrutiating sums to the corrupt city department of parks and recreation, and the profiteering insurance companies, the city has told us, we can no longer play our beloved game on city property. FIE! FIE! to this challenge we say that we will never give up! we will never give in! Back to the underground. a change of venues, and and a adaption of strategy, and we're back on our feet. This means that in order find out about bike polo, you must SHOW UP to bike polo. There will be no more advertisement. We will be yr. sole source of information for all things in the bike polo revolution! VIVE LA RESISTANCE! RIDE BIKES THROW BRICKS!!!
until we are physically removed, we continue to play at the following places and times:
# New | |
/usr/local/bin | |
/usr/bin | |
/bin | |
/usr/local/sbin | |
/usr/sbin | |
/sbin | |
# Default |
<?php | |
/** | |
* Custom configuration bootstrap file for ExpressionEngine | |
* | |
* Place config.php in your site root | |
* Add require(realpath(dirname(__FILE__) . '/../../config_bootstrap.php')); to the bottom of system/expressionengine/config/config.php | |
* Add require(realpath(dirname(__FILE__) . '/../../config_bootstrap.php')); to the bottom of system/expressionengine/config/database.php | |
* If you have moved your site root you'll need to update the require_once path | |
* |
Object properties can refer to numbers, strings, arrays, functions, and other objects. Properties will also accept variables.
Literal objects can have properties and methods added to them on the fly, which we cannot do with a constructor. To add a method to a constructor we must extend its prototype chain.
Functions are first–class citizens in JS, meaning that they can be passed around like any other type of data, eg, variables. http://en.wikipedia.org/wiki/First-class_function
Declared functions build in memory immediately when the program loads.