// some work on style sheets
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
define("funcThree",
|
||||
["funcFour"],
|
||||
function (four) {
|
||||
var three = function (arg) {
|
||||
return arg + "-" + require("funcFour").suffix();
|
||||
};
|
||||
|
||||
three.suffix = function () {
|
||||
return "THREE_SUFFIX";
|
||||
};
|
||||
|
||||
return three;
|
||||
}
|
||||
);
|
||||
Reference in New Issue
Block a user