[TYPO] Remove end whitespaces

bzr revid: jke@openerp.com-20140218131159-8a5hj0i843m3r3dx
This commit is contained in:
jke-openerp 2014-02-18 14:11:59 +01:00
parent cbf55efbd5
commit 1435af64b5
1 changed files with 17 additions and 17 deletions

View File

@ -1,7 +1,7 @@
openerp.calendar = function(instance) {
var _t = instance.web._t;
var QWeb = instance.web.qweb;
instance.calendar = {}
instance.calendar = {};
instance.web.WebClient = instance.web.WebClient.extend({
@ -58,7 +58,7 @@ openerp.calendar = function(instance) {
show_application: function() {
this._super();
this.check_notifications();
}
},
});
@ -92,7 +92,7 @@ openerp.calendar = function(instance) {
var reload_page = function(){
return location.replace(action_url);
}
};
reload_page();
},
@ -108,7 +108,7 @@ openerp.calendar = function(instance) {
});
},
map_tag: function(value){
return _.map(value, function(el) {return {name: el[1], id:el[0], state: el[2]};})
return _.map(value, function(el) {return {name: el[1], id:el[0], state: el[2]};});
},
get_render_data: function(ids){
var self = this;
@ -121,7 +121,7 @@ openerp.calendar = function(instance) {
if (! self.get("effective_readonly")) {
var tag_element = self.tags.tagElements();
_.each(data,function(value, key){
$(tag_element[key]).find(".custom-edit").addClass(data[key][2])
$(tag_element[key]).find(".custom-edit").addClass(data[key][2]);
});
}
}
@ -134,7 +134,7 @@ openerp.calendar = function(instance) {
instance.session.session_bind(instance.session.origin).done(function () {
new instance.calendar.invitation(null,db,action,id,view,attendee_data).appendTo($("body").addClass('openerp'));
});
}
};