Skip to content

Commit bc6a669

Browse files
committed
t
1 parent df00121 commit bc6a669

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

src/foundation/AbstactPanel.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
module mvc {
22
export class AbstactPanel extends egret.DisplayObjectContainer implements IPanel {
3-
protected static ReadyEventX:EventX = new EventX(EventX.READY);
43
public constructor() {
54
super();
65
}

src/mvc/Mediator.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/// <reference path="core/AbstractMVHost.ts" />
12
module mvc {
23
export abstract class Mediator extends AbstractMVHost implements IMediator {
34

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"target": "es5",
4-
"outDir": "bin-debug",
4+
"outFile": "bin-debug/mvc.js",
55
"sourceMap": true,
66
"experimentalDecorators": true,
77
"emitDecoratorMetadata": true,

0 commit comments

Comments
 (0)