Sergey Grebnov created CB-8425:
----------------------------------

             Summary: Media plugin .ctr: improve check for required params as 
per spec
                 Key: CB-8425
                 URL: https://issues.apache.org/jira/browse/CB-8425
             Project: Apache Cordova
          Issue Type: Bug
          Components: Plugin Media
            Reporter: Sergey Grebnov
            Assignee: Sergey Grebnov


As per documentation src and successCallback must be mandatory but argscheck is 
incorrect.

var Media = function(src, successCallback, errorCallback, statusCallback) {
    argscheck.checkArgs('SFFF', 'Media', arguments);
    this.id = utils.createUUID();
    mediaObjects[this.id] = this;
    this.src = src;
...
    exec(null, this.errorCallback, "Media", "create", [this.id, this.src]);
}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to