sanjeev-rajput opened a new issue, #1217:
URL: https://github.com/apache/royale-asjs/issues/1217

   **1. CSS file** 
   Build works with "js-debug" but in "js-release" compiler change file name 
Main.css to Main.min.css but entry of css file doesn't reflects in "index.html"
   
   
   **2. Reading JSON file**
   
    in "js-debug" 
   
   _data is a JSON object
   
   for each(var i:Object in _data){ 
   trace(i.topic); 
   }
   this works perfectly file in "js-debug" but doesn't works in "js-release" it 
has to be change as below
   
   for each(var i:Object in _data){
   trace(i['topic']);
   }


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@royale.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to