Skip to content

Commit

Permalink
修改版本号
Browse files Browse the repository at this point in the history
  • Loading branch information
WanderWang committed Oct 17, 2014
1 parent 9e787bc commit eacaa2c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "egret",
"version": "1.1.0",
"version": "1.1.1",
"private": true,
"author":"egret-labs",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/egret/context/display/HTML5StageText.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ module egret {
if (!stageDelegateDiv) {
stageDelegateDiv = egret.Browser.getInstance().$new("div");
stageDelegateDiv.id = "StageDelegateDiv";
stageDelegateDiv.style.position = "absolute";
// stageDelegateDiv.style.position = "absolute";
var container = document.getElementById(egret.StageDelegate.canvas_div_name);
container.appendChild(stageDelegateDiv);
stageDelegateDiv.transforms();
Expand Down
2 changes: 1 addition & 1 deletion src/egret/context/renderer/HTML5CanvasRenderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ module egret {
canvas.height = egret.MainContext.instance.stage.stageHeight; //stageH
canvas.style.width = container.style.width;
canvas.style.height = container.style.height;
canvas.style.position = "absolute";
// canvas.style.position = "absolute";
container.appendChild(canvas);
}
return canvas;
Expand Down
2 changes: 1 addition & 1 deletion src/egret/context/renderer/WebGLRenderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ module egret {
canvas.height = egret.MainContext.instance.stage.stageHeight; //stageH
canvas.style.width = container.style.width;
canvas.style.height = container.style.height;
canvas.style.position = "absolute";
// canvas.style.position = "absolute";
container.appendChild(canvas);
}
return canvas;
Expand Down
2 changes: 1 addition & 1 deletion tools/templates/empty/egretProperties.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@

]
},
"egret_version":"1.1.0"
"egret_version":"1.1.1"
}
2 changes: 1 addition & 1 deletion tools/templates/gui/egretProperties.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@

]
},
"egret_version":"1.1.0"
"egret_version":"1.1.1"
}

0 comments on commit eacaa2c

Please sign in to comment.