Skip to content

Instantly share code, notes, and snippets.

@jdeagle
Created March 7, 2013 18:47
Show Gist options
  • Save jdeagle/5110641 to your computer and use it in GitHub Desktop.
Save jdeagle/5110641 to your computer and use it in GitHub Desktop.
require.config({
paths : {
"$" : "//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min",
"mout" : "libs/mout"
},
waitSeconds : 15,
});
define(
[
"./Publicity",
"$",
"mout/queryString/getParam"
],
function (Page, $, getParam) {
"use strict";
return Page.extend({
load : function () {
this.sup();
var order = getParam(window.location, "order");
console.log(order);
},
transitionIn : function () {
this.sup();
},
transitionOut : function () {
this.sup();
},
destroy : function () {
this.sup();
},
});
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment