FIX: Xap.provide function is missing "return" statement
-------------------------------------------------------

                 Key: XAP-370
                 URL: https://issues.apache.org/jira/browse/XAP-370
             Project: XAP
          Issue Type: Improvement
            Reporter: Michael Mikhaylov
            Priority: Minor
         Attachments: xap.zip

Function Xap.provide() is used to create an object hierarchy from a name, 
similar to Java packages.
Unfortunately it does not return an object because return statement is missing.
This change replaces 

Xap.provide = function(){
        dojo.provide.apply(dojo,arguments);
};

with

Xap.provide = function(){
        return dojo.provide.apply(dojo,arguments);
};


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to