Author: solomax
Date: Wed Nov 25 05:00:20 2015
New Revision: 1716303

URL: http://svn.apache.org/viewvc?rev=1716303&view=rev
Log:
[OPENMEETINGS-1279] compilation error is fixed

Modified:
    
openmeetings/branches/3.1.x/openmeetings-flash/src/main/swf/modules/conference/tabcontent/fileexplorer/fileExplorer.lzx

Modified: 
openmeetings/branches/3.1.x/openmeetings-flash/src/main/swf/modules/conference/tabcontent/fileexplorer/fileExplorer.lzx
URL: 
http://svn.apache.org/viewvc/openmeetings/branches/3.1.x/openmeetings-flash/src/main/swf/modules/conference/tabcontent/fileexplorer/fileExplorer.lzx?rev=1716303&r1=1716302&r2=1716303&view=diff
==============================================================================
--- 
openmeetings/branches/3.1.x/openmeetings-flash/src/main/swf/modules/conference/tabcontent/fileexplorer/fileExplorer.lzx
 (original)
+++ 
openmeetings/branches/3.1.x/openmeetings-flash/src/main/swf/modules/conference/tabcontent/fileexplorer/fileExplorer.lzx
 Wed Nov 25 05:00:20 2015
@@ -170,7 +170,7 @@
                if ($debug) Debug.write("loadFiles ");
                
                var requestor:URLLoader = new URLLoader();
-               var request:URLRequest = new URLRequest( 
"http://service.example.com/"; );
+               var request:URLRequest = new 
URLRequest("http://service.example.com/";);
                request.method = URLRequestMethod.GET;
                
                //Add the URL variables
@@ -183,7 +183,7 @@
                //Initiate the transaction
                requestor = new URLLoader();
                requestor.addEventListener(Event.COMPLETE, httpRequestComplete);
-               requestor.addEventListener(IOErrorEvent.IOERROR, 
httpRequestError);
+               requestor.addEventListener("ioError", 
httpRequestError);//IOErrorEvent.IOERROR
                requestor.addEventListener(SecurityErrorEvent.SECURITY_ERROR, 
httpRequestError);
                requestor.load( request );
                 


Reply via email to