Skip to content

Instantly share code, notes, and snippets.

View riceboyler's full-sized avatar

Jason Clark riceboyler

View GitHub Profile
define(['durandal/system', './transitionHelper'], function(system, helper) {
var settings = {
inAnimation: 'fadeInLeftBig',
outAnimation: 'fadeOutRight'
},
fadeIn = function(context) {
system.extend(context, settings);
return helper.create(context);
};