// some work on style sheets

This commit is contained in:
Kevin Granger
2013-07-18 18:51:24 +02:00
parent 02921dc9d0
commit 0b4512dbcb
1654 changed files with 171753 additions and 294 deletions
@@ -0,0 +1,15 @@
define("funcOne",
["require", "funcTwo"],
function (require) {
var one = function (name) {
this.name = name;
};
one.prototype.getName = function () {
var inst = new (require("funcTwo"))("-NESTED");
return this.name + inst.name;
};
return one;
}
);