diff --git a/base_phone/static/src/js/phone_widget.js b/base_phone/static/src/js/phone_widget.js index 0f7a4cd..84abd3f 100644 --- a/base_phone/static/src/js/phone_widget.js +++ b/base_phone/static/src/js/phone_widget.js @@ -17,7 +17,7 @@ openerp.base_phone = function (instance) { if (!this.get("effective_readonly")) { this._super(); } else { - var formatted_number = formatInternational('', this.get('value')) + var formatted_number = formatInternational('', this.get('value')); this.$el.find('a') .attr('href', 'tel:' + this.get('value')) .text(formatted_number || ''); @@ -42,7 +42,7 @@ openerp.base_phone = function (instance) { if (!this.get("effective_readonly")) { this._super(); } else { - var formatted_number = formatInternational('', this.get('value')) + var formatted_number = formatInternational('', this.get('value')); this.$el.find('a') .attr('href', 'fax:' + this.get('value')) .text(formatted_number || '');