Skip to content

Instantly share code, notes, and snippets.

View totty90's full-sized avatar

Totty totty90

View GitHub Profile
@totty90
totty90 / easy express example
Created September 8, 2014 16:19
easy express example
define(function(require, exports, module){
return function(args, cb, session){
var constants = require('client/constants');
var async = require('async');
var utils = require('client/utils');
var planetsToGive = args.planetsToGive;
var blockId = args.blockId;
var player = args.player;
@totty90
totty90 / 01 moduleA (return value).js
Last active August 29, 2015 14:03
Requirejs and Commonjs crossmodule standard boilerplate
(typeof define==="function"?define:function(f){var r=f(require,exports,module);module.exports=(r!==void 0?r:module.exports);})(function(require,exports,module){
return 27;
})
@totty90
totty90 / Add.js
Created February 20, 2014 12:39
React.js bug? getInitialState called more than once in a component lifecycle
define([
"react",
'future',
'API',
'../_helpers/index',
'../_helpers/ItemRenderer',
'./SelectArticleClassesStep',
'./SelectOperationClassesStep',
], function(
React,
// Generated on 2014-02-11 using generator-webapp 0.4.7
'use strict';
// # Globbing
// for performance reasons we're only matching one level down:
// 'test/spec/{,*/}*.js'
// use this if you want to recursively match all subfolders:
// 'test/spec/**/*.js'
module.exports = function (grunt) {