Skip to content

Commit

Permalink
prepare for 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leeluolee committed Jan 27, 2015
1 parent 9993739 commit feb48dc
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "regularjs",
"version": "0.3.0-pre",
"version": "0.3.0",
"main": "dist/regular.js",
"description": "reactjs + angularjs = regularjs",
"authors": "@leeluolee <87399126@163.com>",
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "regularjs",
"version": "0.3.0-pre",
"version": "0.3.0",
"main": "src/index.js",
"scripts": [
"src/Regular.js",
Expand Down
2 changes: 1 addition & 1 deletion dist/regular.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
@author leeluolee
@version 0.3.0-pre
@version 0.3.0
@homepage http://regularjs.github.io
*/
;(function(){
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "regularjs",
"version": "0.3.0-pre",
"version": "0.3.0",
"author": {
"name": "leeluolee"
},
Expand Down
2 changes: 1 addition & 1 deletion test/regular.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
@author leeluolee
@version 0.3.0-pre
@version 0.3.0
@homepage http://regularjs.github.io
*/

Expand Down
18 changes: 9 additions & 9 deletions test/spec/browser-animate.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ void function(){
}


// insert a test css
var sheet = (function() {
// Create the <style> tag
var style = document.createElement("style");
// // insert a test css
// var sheet = (function() {
// // Create the <style> tag
// var style = document.createElement("style");

style.appendChild(document.createTextNode(""));
document.head.appendChild(style);
// style.appendChild(document.createTextNode(""));
// document.head.appendChild(style);

return style.sheet;
})();
// return style.sheet;
// })();

describe("Animation", function(){
var Component = Regular.extend();
Expand Down Expand Up @@ -250,7 +250,7 @@ void function(){
}
})
emit.call(component,{
param: "toast, hello",
param: "toast, hello"
})(function(){
expect(toasted).to.equal("leeluolee");
done();
Expand Down

0 comments on commit feb48dc

Please sign in to comment.