Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

flash size increased #73

Merged
merged 1 commit into from
Feb 14, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified FileAPI.flash.swf
Binary file not shown.
5 changes: 3 additions & 2 deletions flash/src/ru/mail/controller/AppController.as
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ package ru.mail.controller
private function initView(graphicContext:Sprite):void
{
// init with some default dimensionsm then listen to Stage resize event
resizeView(graphicContext, 300, 50);
resizeView(graphicContext, 1000, 1000);

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

uploadCommand.dispose();
Expand Down