Skip to content

Commit

Permalink
change version to 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lifesinger committed Dec 13, 2011
1 parent 3b8db12 commit e2f410c
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 19 deletions.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name" : "seajs",
"version" : "1.1.1-dev",
"version" : "1.1.1",
"description" : "A Module Loader for the Web",
"homepage" : "https://seajs.com/",
"keywords" : ["loader", "module", "commonjs", "browser", "nodejs"],
Expand Down
1 change: 0 additions & 1 deletion test/issues/preload-ie/a.tpl

This file was deleted.

Empty file removed test/issues/preload-ie/b.tpl
Empty file.
5 changes: 0 additions & 5 deletions test/issues/preload-ie/c.html

This file was deleted.

14 changes: 3 additions & 11 deletions test/issues/preload-ie/main.js
@@ -1,18 +1,10 @@

seajs.config({
preload: ['plugin-text']
});


define(function(require) {

var test = require('../../test');

var tpl = require('./a.tpl');
var html = require('./c.html');

test.assert(tpl === 'I am a template file. "\'', tpl);
test.assert(~html.indexOf('I am a html file.'), 'html is ok');

require('./p');
test.assert(P, P);
test.done();

});
4 changes: 4 additions & 0 deletions test/issues/preload-ie/p-base.js
@@ -0,0 +1,4 @@

define(function() {
this.P = true;
});
6 changes: 6 additions & 0 deletions test/issues/preload-ie/p.js
@@ -0,0 +1,6 @@

define(function(require) {

require('./p-base');

});
2 changes: 1 addition & 1 deletion test/issues/preload-ie/test.html
Expand Up @@ -16,7 +16,7 @@
<body>

<p>
<a href="https://github.com/seajs/seajs/issues/107">#107</a>
<a href="https://github.com/seajs/seajs/issues/145">#145</a>
</p>

<div id="out"></div>
Expand Down

0 comments on commit e2f410c

Please sign in to comment.