Dactyloidae/application
janekptacijarabaci cc008be0a7 Bug 92737 - Part 2: Open multiple tabs when multiple items are dropped on non-remote content area
browser.js:

// handleDroppedLink has the following 2 overloads:
//   handleDroppedLink(event, url, name)
//   handleDroppedLink(event, links)
function handleDroppedLink(event, urlOrLinks, name)
{
let links;
if (Array.isArray(urlOrLinks)) {
links = urlOrLinks;
} else {
links = [{ url: urlOrLinks, name, type: "" }];
}

...it is in the previous commit.
2019-02-15 23:52:30 +08:00
..
palemoon Bug 92737 - Part 2: Open multiple tabs when multiple items are dropped on non-remote content area 2019-02-15 23:52:30 +08:00
xulrunner Import XULRunner and make it produce the generic stub 2019-02-15 23:48:17 +08:00