Skip to content

Commit feb48dc

Browse files
committed
prepare for 0.3.0
1 parent 9993739 commit feb48dc

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "regularjs",
3-
"version": "0.3.0-pre",
3+
"version": "0.3.0",
44
"main": "dist/regular.js",
55
"description": "reactjs + angularjs = regularjs",
66
"authors": "@leeluolee <87399126@163.com>",

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "regularjs",
3-
"version": "0.3.0-pre",
3+
"version": "0.3.0",
44
"main": "src/index.js",
55
"scripts": [
66
"src/Regular.js",

dist/regular.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
@author leeluolee
3-
@version 0.3.0-pre
3+
@version 0.3.0
44
@homepage http://regularjs.github.io
55
*/
66
;(function(){

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "regularjs",
3-
"version": "0.3.0-pre",
3+
"version": "0.3.0",
44
"author": {
55
"name": "leeluolee"
66
},

test/regular.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
@author leeluolee
3-
@version 0.3.0-pre
3+
@version 0.3.0
44
@homepage http://regularjs.github.io
55
*/
66

test/spec/browser-animate.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ void function(){
88
}
99

1010

11-
// insert a test css
12-
var sheet = (function() {
13-
// Create the <style> tag
14-
var style = document.createElement("style");
11+
// // insert a test css
12+
// var sheet = (function() {
13+
// // Create the <style> tag
14+
// var style = document.createElement("style");
1515

16-
style.appendChild(document.createTextNode(""));
17-
document.head.appendChild(style);
16+
// style.appendChild(document.createTextNode(""));
17+
// document.head.appendChild(style);
1818

19-
return style.sheet;
20-
})();
19+
// return style.sheet;
20+
// })();
2121

2222
describe("Animation", function(){
2323
var Component = Regular.extend();
@@ -250,7 +250,7 @@ void function(){
250250
}
251251
})
252252
emit.call(component,{
253-
param: "toast, hello",
253+
param: "toast, hello"
254254
})(function(){
255255
expect(toasted).to.equal("leeluolee");
256256
done();

0 commit comments

Comments
 (0)