Browse Source

Add semi-column at the end of line in JS code !

pull/7/head
Alexis de Lattre 10 years ago
parent
commit
d46ed3bdb5
  1. 4
      base_phone/static/src/js/phone_widget.js

4
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 || '');

Loading…
Cancel
Save