Skip to content

Commit

Permalink
Merge branch 'main' into dbajpeyi/chore/update-readme
Browse files Browse the repository at this point in the history
  • Loading branch information
dbajpeyi authored Dec 16, 2024
2 parents 31f4179 + e14501e commit c506250
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 29 deletions.
14 changes: 8 additions & 6 deletions dist/autofill-debug.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 8 additions & 6 deletions dist/autofill.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 7 additions & 5 deletions src/UI/controllers/HTMLTooltipUIController.js
Original file line number Diff line number Diff line change
Expand Up @@ -328,23 +328,25 @@ export class HTMLTooltipUIController extends UIController {

/**
* Called when clicking on the Manage… button in the html tooltip
*
* @param {SupportedMainTypes} type
* @returns {*}
* @private
*/
_onManage(type) {
this.removeTooltip();
switch (type) {
case 'credentials':
return this._options.device.openManagePasswords();
this._options.device.openManagePasswords();
break;
case 'creditCards':
return this._options.device.openManageCreditCards();
this._options.device.openManageCreditCards();
break;
case 'identities':
return this._options.device.openManageIdentities();
this._options.device.openManageIdentities();
break;
default:
// noop
}
this.removeTooltip();
}

_onIncontextSignupDismissed({ hasOtherOptions }) {
Expand Down
14 changes: 8 additions & 6 deletions swift-package/Resources/assets/autofill-debug.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 8 additions & 6 deletions swift-package/Resources/assets/autofill.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c506250

Please sign in to comment.