3.0 source code

This commit is contained in:
agolybev
2015-04-28 17:59:00 +03:00
parent c69fd34bdd
commit 7b3b2248e5
16311 changed files with 1445974 additions and 3108429 deletions

View File

@@ -0,0 +1,39 @@
requirejs.config({
paths: {
text: '../../circular/complexPlugin/slowText'
}
});
//First make sure the plugin is loaded, so that there is nothing waiting for
//normalization.
require(['text'], function (text) {
function trim(text) {
return text.replace(/^\s+/, '').replace(/\s+$/, '');
}
require(['app'], function (app) {
doh.register(
"pluginsLast",
[
function pluginsLast(t){
t.is("app", app.name);
t.is("specificCollection", app.specificCollection.name);
t.is("specificCollection", app.specificCollection.html);
t.is("bigCollection", app.bigCollection.name);
t.is("bigCollection", app.bigCollection.html);
t.is("collection", app.bigCollection.collection.name);
t.is("collectionHelper", app.bigCollection.collection.collectionHelperName);
t.is("component", app.bigCollection.collection.componentName);
t.is("component", app.bigCollection.collection.componentHtml);
}
]
);
doh.run();
});
});