Skip to content

Instantly share code, notes, and snippets.

@kadukf
Created November 21, 2013 21:17
Show Gist options
  • Save kadukf/7589808 to your computer and use it in GitHub Desktop.
Save kadukf/7589808 to your computer and use it in GitHub Desktop.
WinJS.Namespace.define("Application", {
Derived: WinJS.Namespace._lazy(function() {
return WinJS.Class.derive(Application.Parent, function() {
});
})
});
WinJS.Namespace.define("Application", {
Parent: WinJS.Namespace._lazy(function () {
return WinJS.Class.define(function() {
});
})
});
var derivedObject = new Application.Derived();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment