12345678910111213141516171819202122232425 |
- define(["stopwords", "index-1", "index-2", "index-3", "htmlFileInfoList", "link2parent", "jquery"], function(stopwords, index1, index2, index3, fileInfoList, link2parent, $) {
- var words = $.extend({}, index1, index2, index3);
- return {
-
- w : words,
-
- stopWords : stopwords,
-
- fil : fileInfoList,
- link2parent : link2parent
- };
- });
|