From 6a24af3743a01a4407debf9f6f0533c1806cfd0a Mon Sep 17 00:00:00 2001 From: Antoine Vandecreme Date: Fri, 18 Apr 2014 16:59:47 -0400 Subject: [PATCH] Add @private to internal methods. --- src/openseadragon.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/openseadragon.js b/src/openseadragon.js index 8e0168ac..289652b6 100644 --- a/src/openseadragon.js +++ b/src/openseadragon.js @@ -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