Skip to content

Commit

Permalink
Merge PR OCA#2026 into 12.0
Browse files Browse the repository at this point in the history
Signed-off-by dreispt
  • Loading branch information
OCA-git-bot committed May 11, 2024
2 parents 1a252ee + 69076b6 commit 9318517
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
16 changes: 8 additions & 8 deletions web_widget_digitized_signature/static/src/js/digital_sign.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ odoo.define('web_widget_digitized_signature.web_digital_sign', function(require)
'decor-color': '#D1D0CE',
'color': '#000',
'background-color': '#fff',
'height': '150',
'width': '550'
'height': this.attrs['height'] || '150',
'width': this.attrs['width'] || '550'
};
this.empty_sign = [];
},
Expand All @@ -49,8 +49,8 @@ odoo.define('web_widget_digitized_signature.web_digital_sign', function(require)
'decor-color': '#D1D0CE',
'color': '#000',
'background-color': '#fff',
'height': '150',
'width': '550',
'height': this.attrs['height'] || '150',
'width': this.attrs['width'] || '550',
'clear': true
};
this.$(".signature").jSignature(sign_options);
Expand Down Expand Up @@ -120,8 +120,8 @@ odoo.define('web_widget_digitized_signature.web_digital_sign', function(require)
'decor-color': '#D1D0CE',
'color': '#000',
'background-color': '#fff',
'height': '150',
'width': '550'
'height': this.attrs['height'] || '150',
'width': this.attrs['width'] || '550'
};
this.$(".signature").jSignature("init", sign_options);
}
Expand All @@ -133,8 +133,8 @@ odoo.define('web_widget_digitized_signature.web_digital_sign', function(require)
'decor-color': '#D1D0CE',
'color': '#000',
'background-color': '#fff',
'height': '150',
'width': '550'
'height': this.attrs['height'] || '150',
'width': this.attrs['width'] || '550'
});
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
<xpath expr="." position="inside">
<script type="text/javascript"
src="/web_widget_digitized_signature/static/src/js/digital_sign.js"/>
<style type="text/css">
.jSignature {
border: 2px dotted gray !important;
}
</style>
</xpath>
</template>

Expand Down

0 comments on commit 9318517

Please sign in to comment.