Skip to content

Commit

Permalink
update tc
Browse files Browse the repository at this point in the history
  • Loading branch information
yiminghe committed Jul 25, 2013
1 parent 31dc4c3 commit 5fb419a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/seed/tests/others/clear.js
Expand Up @@ -4,14 +4,22 @@ KISSY.clearLoader = function () {
modules = Env.mods,
m;

var ignore={
empty:1,
uri:1,
promise:1,
ua:1,
path:1
};

self.config({
map: false,
mapCombo: false,
packages: false
});

for (m in modules) {
if (m != 'empty') {
if (!ignore[m]) {
var p;
for (p in modules[m]) {
if (p != 'alias' &&
Expand Down

0 comments on commit 5fb419a

Please sign in to comment.