mirror of https://github.com/keeweb/keeweb
commit
57af428b9e
|
@ -17,7 +17,7 @@ class FieldViewAutocomplete extends FieldViewText {
|
|||
startEdit() {
|
||||
super.startEdit();
|
||||
const fieldRect = this.input[0].getBoundingClientRect();
|
||||
const shadowSpread = parseInt(this.input.css('--focus-shadow-spread'));
|
||||
const shadowSpread = parseInt(this.input.css('--focus-shadow-spread')) || 0;
|
||||
this.autocomplete = $('<div class="details__field-autocomplete"></div>').appendTo('body');
|
||||
this.autocomplete.css({
|
||||
top: fieldRect.bottom + shadowSpread,
|
||||
|
|
|
@ -42,7 +42,7 @@ class FieldViewDate extends FieldViewText {
|
|||
adjustPickerPosition(...args) {
|
||||
window.Pikaday = Pikaday;
|
||||
Pikaday.prototype.adjustPosition.apply(this.picker, args);
|
||||
const shadowSpread = parseInt(this.input.css('--focus-shadow-spread'));
|
||||
const shadowSpread = parseInt(this.input.css('--focus-shadow-spread')) || 0;
|
||||
if (shadowSpread) {
|
||||
const isOnTop = this.picker.el.classList.contains('top-aligned');
|
||||
const offset = isOnTop ? -shadowSpread : shadowSpread;
|
||||
|
|
|
@ -41,7 +41,7 @@ class FieldViewTags extends FieldViewText {
|
|||
startEdit() {
|
||||
super.startEdit();
|
||||
const fieldRect = this.input[0].getBoundingClientRect();
|
||||
const shadowSpread = parseInt(this.input.css('--focus-shadow-spread'));
|
||||
const shadowSpread = parseInt(this.input.css('--focus-shadow-spread')) || 0;
|
||||
this.tagsAutocomplete = $('<div class="details__field-autocomplete"></div>').appendTo(
|
||||
'body'
|
||||
);
|
||||
|
|
|
@ -102,7 +102,7 @@ class FieldViewText extends FieldView {
|
|||
this.hideGenerator();
|
||||
} else {
|
||||
const fieldRect = this.input[0].getBoundingClientRect();
|
||||
const shadowSpread = parseInt(this.input.css('--focus-shadow-spread'));
|
||||
const shadowSpread = parseInt(this.input.css('--focus-shadow-spread')) || 0;
|
||||
this.gen = new GeneratorView({
|
||||
pos: { left: fieldRect.left, top: fieldRect.bottom + shadowSpread },
|
||||
password: this.value
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "KeeWeb",
|
||||
"version": "1.11.8",
|
||||
"version": "1.11.9",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "KeeWeb",
|
||||
"version": "1.11.8",
|
||||
"version": "1.11.9",
|
||||
"description": "Free cross-platform password manager compatible with KeePass",
|
||||
"main": "main.js",
|
||||
"homepage": "https://keeweb.info",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "keeweb",
|
||||
"version": "1.11.8",
|
||||
"version": "1.11.9",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "keeweb",
|
||||
"version": "1.11.8",
|
||||
"version": "1.11.9",
|
||||
"description": "Free cross-platform password manager compatible with KeePass",
|
||||
"main": "Gruntfile.js",
|
||||
"private": true,
|
||||
|
|
|
@ -9,8 +9,9 @@ Release notes
|
|||
`+` #480: option to launch the app minimized
|
||||
`-` fix #1273: untranslated menu items
|
||||
|
||||
##### v1.11.9 (TBD)
|
||||
##### v1.11.9 (2019-10-13)
|
||||
`-` fix #1300: selecting auto-type sequence items issues
|
||||
`-` fix #1290: generator popup positioning in custom themes
|
||||
|
||||
##### v1.11.8 (2019-10-11)
|
||||
`-` fix #1292: macOS app notarization
|
||||
|
|
Loading…
Reference in New Issue