Forgot debugging stuff

bzr revid: nicolas.vanhoren@openerp.com-20120803144303-rqw9rn0wy1u3kyvo
This commit is contained in:
niv-openerp 2012-08-03 16:43:03 +02:00
parent e060a3275f
commit 8b55c937d9
1 changed files with 3 additions and 4 deletions

View File

@ -169,10 +169,9 @@ openerp.web_linkedin = function(instance) {
});
if (this.data.__type === "company") {
this.$("h3").text(this.data.name);
//IN.API.Raw(_.str.sprintf("companies/%d:(logo-url)", this.data.id)).result(function (result) {
// self.$("img").attr("src", result.logoUrl);
//});
self.$("img").attr("src", "http://m3.licdn.com/media/p/2/000/03b/36c/283399d.png");
IN.API.Raw(_.str.sprintf("companies/%d:(logo-url)", this.data.id)).result(function (result) {
self.$("img").attr("src", result.logoUrl);
});
} else { // people
this.$("h3").text(_.str.sprintf("%s %s", this.data.firstName, this.data.lastName));
}