added missing type: attr

type: attributes were accidentally omitted during the merge
This commit is contained in:
Chris Schneider
2013-02-22 09:28:35 -06:00
parent 047e97cb22
commit 58cfcd4126
2 changed files with 20 additions and 5 deletions

View File

@@ -23,7 +23,8 @@
return ApiClient.getUserImageUrl(user.Id, {
width: 240,
tag: user.PrimaryImageTag
tag: user.PrimaryImageTag,
type: "Primary"
});
},
@@ -73,7 +74,8 @@
var imgUrl = ApiClient.getUserImageUrl(user.Id, {
width: 500,
tag: user.PrimaryImageTag
tag: user.PrimaryImageTag,
type: "Primary"
});
html += '<img src="' + imgUrl + '" />';