Skip to content

Commit 7372dfa

Browse files
committed
Merge pull request #73 from im-saxo/dev
flash size increased
2 parents edb8cd4 + c347a91 commit 7372dfa

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

FileAPI.flash.swf

2 Bytes
Binary file not shown.

flash/src/ru/mail/controller/AppController.as

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ package ru.mail.controller
120120
private function initView(graphicContext:Sprite):void
121121
{
122122
// init with some default dimensionsm then listen to Stage resize event
123-
resizeView(graphicContext, 300, 50);
123+
resizeView(graphicContext, 1000, 1000);
124124

125125
// use hand cursor true
126126
setCursor("pointer");
@@ -597,7 +597,8 @@ package ru.mail.controller
597597
if (event.error.error.indexOf("#2038") > -1) {
598598
_model.hasError = true;
599599
}
600-
_jsCaller.callJS( callback, {type:"error", message:event.error.getError(), status:event.error.httpStatus } );
600+
_jsCaller.callJS( callback, {type:"error", message:event.error.getError(), status:event.error.httpStatus } );
601+
//TODO replace with httpStatus, и вообще в complete статус передастся только через urlLoader, в случае fileReference никогда мы его не узнаем.
601602
}
602603

603604
uploadCommand.dispose();

0 commit comments

Comments
 (0)