Skip to content

Instantly share code, notes, and snippets.

@quinkennedy
quinkennedy / code-of-conduct.md
Last active September 22, 2016 17:35 — forked from remy/code-of-conduct.md
Code of Conduct

Code of Conduct

All attendees, speakers, sponsors, volunteers, and organizers at our conference are required to agree with the following code of conduct. Organisers will enforce this code throughout the event. We are expecting coorporation from all participants to help ensuring a safe environment for everybody.

tl;dr: Don’t be a Jerk

Need Help?

You have our contact details in the emails we've sent

// BIND FIX FOR OLDER BROWSERS
if( Function.prototype.bind ) {
} else {
/** safari, why you no bind!? */
Function.prototype.bind = function (bind) {
var self = this;
return function () {
var args = Array.prototype.slice.call(arguments);
return self.apply(bind || null, args);
};