summaryrefslogtreecommitdiffstats
path: root/application/palemoon/base/content
Commit message (Collapse)AuthorAgeLines
* Merge branch 'master' of https://github.com/MoonchildProductions/UXP into ↵janekptacijarabaci2018-04-17-241/+120
|\ | | | | | | pm_url_1
| * Revert "[PALEMOON] Source nsPlacesAutoComplete from the suite"Matt A. Tobin2018-04-16-1/+1
| | | | | | | | This reverts commit 532de8c09d10767960cdecbb4fcaa4262884016e.
| * Revert "[PALEMOON] Use unified complete in autocompletesearch attribute for ↵Matt A. Tobin2018-04-16-1/+1
| | | | | | | | | | | | urlbar" This reverts commit 2ccac3373fd4eaebe4fdd1812550549232fb6ed1.
| * [PALEMOON] Use unified complete in autocompletesearch attribute for urlbarMatt A. Tobin2018-04-16-1/+1
| |
| * [PALEMOON] Source nsPlacesAutoComplete from the suiteMatt A. Tobin2018-04-16-1/+1
| |
| * Remove Sync promobox from popup-notifications.inc as wellJustOff2018-04-16-1/+0
| |
| * Remove the Sync promotion in the add-on install doorhangerJustOff2018-04-16-194/+0
| |
| * Revert "[PALEMOON] Fix a warning: "unreachable code after return statement" ↵New Tobin Paradigm2018-04-16-2/+1
| | | | | | | | in urlbarBindings.xml"
| * Merge pull request #176 from ↵New Tobin Paradigm2018-04-16-1/+2
| |\ | | | | | | | | | | | | janekptacijarabaci/pm_unreachable-code-after-return-statement_1 [PALEMOON] Fix a warning: "unreachable code after return statement" in urlbarBindings.xml
| | * [PALEMOON] Fix a warning: "unreachable code after return statement" in ↵janekptacijarabaci2018-04-15-1/+2
| | | | | | | | | | | | | | | | | | urlbarBindings.xml Issue #121
| * | [PALEMOON] Update UA Compatibility modes in a backwards compatible wayMatt A. Tobin2018-04-16-0/+50
| | |
| * | Merge branch 'master' of https://github.com/MoonchildProductions/UXPwolfbeast2018-04-16-13/+36
| |\ \
| | * | [PALEMOON] [Frontend vs Backend] HTML - input - datetimejanekptacijarabaci2018-04-15-13/+36
| | |/ | | | | | | | | | Issue #162
| * / Mass-replace global-scope let with var in Pale Moon and TychoAMwolfbeast2018-04-16-35/+36
| |/ | | | | | | tag #155
* | [PALEMOON] Remove unused Task.jsm in openLocation.jsjanekptacijarabaci2018-04-17-1/+0
| |
* | [PALEMOON] Fix conflict in openLocation.jsjanekptacijarabaci2018-04-17-2/+2
| | | | | | | | https://github.com/MoonchildProductions/UXP/commit/931950a880b3550490422b1855c509be10586858#diff-2f4cb31954d5857012f1452698b9bfce
* | Fix flags for "loadURIWithFlags" in openLocation.jsjanekptacijarabaci2018-04-15-1/+2
| | | | | | | | Issue #121
* | Maybe fix openLocation.js (to Promise)janekptacijarabaci2018-04-15-2/+1
| | | | | | | | Issue #121
* | Bug 92737 - Part 10: Use browserDragAndDrop.dropLinks in urlbarBindings.xmljanekptacijarabaci2018-04-15-2/+3
| | | | | | | | Issue #121
* | Bug 92737 - Part 7: Open multiple windows when multiple items are dropped on ↵janekptacijarabaci2018-04-15-5/+8
| | | | | | | | | | | | New Window button Issue #121
* | Bug 92737 - Part 6: Open multiple tabs when multiple items are dropped on ↵janekptacijarabaci2018-04-15-5/+8
| | | | | | | | | | | | New Tab button Issue #121
* | Bug 92737 - Part 5: Set multiple homepage when multiple items are dropped on ↵janekptacijarabaci2018-04-15-7/+15
| | | | | | | | | | | | Home button Issue #121
* | Bug 92737 - Part 4: Open multiple tabs when multiple items are dropped on tabjanekptacijarabaci2018-04-15-25/+21
| | | | | | | | | | | | | | + Follow up: Bug 92737 - Part 3: Open multiple tabs when multiple items are dropped on remote content area - browser.js: "usercontextid" (default: 0)
* | Bug 92737 - Part 2: Open multiple tabs when multiple items are dropped on ↵janekptacijarabaci2018-04-15-12/+80
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Bug 1100294 - Turn getShortcutOrURIAndPostData() into a task that uses the ↵janekptacijarabaci2018-04-15-72/+99
| | | | | | | | | | | | new keywords API Issue #121
* | Bug 1100291 - Make getShortcutOrURIAndPostData() async by calling the passed ↵janekptacijarabaci2018-04-15-10/+8
| | | | | | | | | | | | callback off a zero timeout Issue #112
* | Bug 989984 - getShortcutOrURIAndPostData should have a synchronous callback ↵janekptacijarabaci2018-04-15-135/+152
| | | | | | | | | | | | behavior Issue #112
* | Bug 846635 - Use asynchronous getCharsetForURI in getShortcutOrURIjanekptacijarabaci2018-04-15-259/+304
|/ | | | Issue #121
* Suppress false-positive warning about unreachable code after return in ↵JustOff2018-04-14-3/+2
| | | | nsContextMenu.js
* Use document's principal for favicons in browserJustOff2018-04-14-10/+19
|
* Merge pull request #143 from JustOff/PR_browser_newChannel2New Tobin Paradigm2018-04-13-5/+12
|\ | | | | Make JS callers of ios.newChannel call ios.newChannel2 in browser/
| * Make JS callers of ios.newChannel call ios.newChannel2 in browser/JustOff2018-04-13-5/+12
| |
* | Fix a comment: "DevEdition theme" vs "DevTools theme"janekptacijarabaci2018-04-13-2/+1
| | | | | | | | Issue #102
* | Fix: Developer Toolbar (the command: `cookie`; themes)janekptacijarabaci2018-04-13-0/+120
|/ | | | Issue #102
* Merge pull request #141 from janekptacijarabaci/pm_findbar_1New Tobin Paradigm2018-04-13-48/+87
|\ | | | | Fix: Findbar broken
| * Fix typo in a property in tabbrowser.xmljanekptacijarabaci2018-04-13-1/+1
| | | | | | | | Issue #138
| * Fix (to TODO): Findbar throws an error - "nsIPrefBranch.getBoolPref" is not ↵janekptacijarabaci2018-04-13-0/+5
| | | | | | | | | | | | exist in browser.js Issue #138
| * Fix: Findbar broken (basic)janekptacijarabaci2018-04-13-48/+82
| | | | | | | | Issue #138
* | Style clean up: saveImageURL() in nsContextMenu.jsjanekptacijarabaci2018-04-13-2/+2
|/ | | | Tag #139
* Merge pull request #139 from janekptacijarabaci/pm_contentMenu_saveImageURL_1New Tobin Paradigm2018-04-13-5/+14
|\ | | | | Fix: "DEPRECATION WARNING: saveImageURL should be passed the private state of the containing window" in nsContextMenu.js
| * Fix: DEPRECATION WARNING: saveImageURL should be passed the private state of ↵janekptacijarabaci2018-04-13-5/+14
| | | | | | | | | | | | the in nsContextMenu.js Issue #121
* | Fix: Using "View Source" from Browser Consolejanekptacijarabaci2018-04-13-38/+32
|/ | | | Issue #121
* Merge pull request #125 from janekptacijarabaci/pm_loginManager_1New Tobin Paradigm2018-04-12-2/+23
|\ | | | | [PALEMOON] Fix Login Manager (Prompter) - basic
| * [PALEMOON] [Frontend vs Backend] Password Manager: ↵janekptacijarabaci2018-04-12-2/+5
| | | | | | | | `InsecurePasswordUtils.checkForInsecurePasswords` is not a function
| * [PALEMOON] [Frontend vs Backend] Password Manager - Implemented Popup ↵janekptacijarabaci2018-04-11-0/+8
| | | | | | | | Notifications (it is not complete)
| * [PALEMOON] [Frontend vs Backend] Login Manager: Bug 1045987 - Implemented ↵janekptacijarabaci2018-04-11-0/+10
| | | | | | | | "getBrowserForContentWindow" method in tabbrowser.xml
* | [PALEMOON] Resolve issues with redeclaration according to ES6Matt A. Tobin2018-04-12-13/+13
| |
* | Revert "[PALEMOON] Fix redeclarations of shorthand Cc, Ci, Cu"Matt A. Tobin2018-04-12-1/+7
|/ | | | This reverts commit 6fde853fa8276926f30c7135bdd5f68de3afc35a.
* [PALEMOON] Fix depth in baseMenuOverlay.xulMatt A. Tobin2018-04-11-1/+1
|
* Merge pull request #117 from janekptacijarabaci/pm_sanitize_path_console_1New Tobin Paradigm2018-04-11-1/+1
|\ | | | | [PALEMOON] [DevTools] Fix a path with Console.jsm (deprecated) - in sanitize.js