Add @private to internal methods.

This commit is contained in:
Antoine Vandecreme 2014-04-18 16:59:47 -04:00
parent 116cf7449f
commit 6a24af3743

View File

@ -1729,6 +1729,7 @@ window.OpenSeadragon = window.OpenSeadragon || function( options ){
* Retrieves the protocol used by the url. The url can either be absolute
* or relative.
* @function
* @private
* @param {String} url The url to retrieve the protocol from.
* @return {String} The protocol (http:, https:, file:, ftp: ...)
*/
@ -1743,6 +1744,7 @@ window.OpenSeadragon = window.OpenSeadragon || function( options ){
/**
* Create an XHR object
* @private
* @param {type} [local] If set to true, the XHR will be file: protocol
* compatible if possible (but may raise a warning in the browser).
* @returns {XMLHttpRequest}
@ -1782,7 +1784,6 @@ window.OpenSeadragon = window.OpenSeadragon || function( options ){
return $.createAjaxRequest( local );
},
/**
* Makes an AJAX request.
* @function