Home | History | Annotate | Download | only in photo

Lines Matching refs:urls

74  * @param {Array.<string>} urls Array of urls.
75 * @param {Array.<string>} selectedUrls Array of selected urls.
77 Gallery.open = function(context, urls, selectedUrls) {
79 Gallery.instance.load(urls, selectedUrls);
94 var urls = [];
118 urls.push(url);
144 urls.sort();
159 Gallery.open(context, urls, selectedUrls);
362 * @param {Array.<string>} urls Array of urls.
363 * @param {Array.<string>} selectedUrls Array of selected urls.
365 Gallery.prototype.load = function(urls, selectedUrls) {
367 for (var index = 0; index < urls.length; ++index) {
368 items.push(new Gallery.Item(urls[index]));
375 var selectedIndex = urls.indexOf(selectedUrls[i]);
647 * @return {Array.<string>} Array of currently selected urls.
912 * Update available actions list based on the currently selected urls.
916 var urls = this.getSelectedUrls();
943 this.executeWhenReady(api.executeTask.bind(api, taskId, urls));
954 if (!urls.length)
957 api.getFileTasks(urls, mimeTypes, createShareMenu);