Skip to content

Commit

Permalink
fix aggiornamento password
Browse files Browse the repository at this point in the history
  • Loading branch information
madbob committed Sep 7, 2023
1 parent bb012db commit f235b19
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion code/public/js/gasdotto.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion code/public/js/gasdotto.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion code/public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"/js/gasdotto.js": "/js/gasdotto.js?id=b1373d4234fb1704cd44140eea019d36",
"/js/gasdotto.js": "/js/gasdotto.js?id=546c09f90f034135ebf6e297f6a74827",
"/css/gasdotto.css": "/css/gasdotto.css?id=03185e0a3bee7058398f38f8838c191b"
}
5 changes: 2 additions & 3 deletions code/resources/assets/js/password.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,9 @@ $(document).ready(function() {
return;
}

$(this).popover({
var input = $(this);
input.popover({
content: function() {
var input = $(this);

var ret = '<div>\
<div class="row mb-2"><label for="password" class="col-4 col-form-label">' + _('Nuova Password') + '</label><div class="col-8"><input type="password" class="form-control" name="password" value="" autocomplete="off" minlength="8"></div></div>\
<div class="row mb-2"><label for="password_confirm" class="col-4 col-form-label">' + _('Conferma Password') + '</label><div class="col-8"><input type="password" class="form-control" name="password_confirm" value="" autocomplete="off" minlength="8"></div></div>';
Expand Down
2 changes: 1 addition & 1 deletion code/resources/views/user/accounting.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@if($currentuser->id == $user->id && $user->gas->hasFeature('satispay')))
@if($currentuser->id == $user->id && $user->gas->hasFeature('satispay'))
<div class="row">
<div class="col">
@if($user->gas->hasFeature('satispay'))
Expand Down

0 comments on commit f235b19

Please sign in to comment.