added missing type: attr
type: attributes were accidentally omitted during the merge
This commit is contained in:
parent
047e97cb22
commit
58cfcd4126
|
@ -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 + '" />';
|
||||
|
|
|
@ -474,7 +474,8 @@ var Dashboard = {
|
|||
var imageUrl = user.PrimaryImageTag ? ApiClient.getUserImageUrl(user.Id, {
|
||||
|
||||
height: 400,
|
||||
tag: user.PrimaryImageTag
|
||||
tag: user.PrimaryImageTag,
|
||||
type: "Primary"
|
||||
|
||||
}) : "css/images/userFlyoutDefault.png";
|
||||
|
||||
|
@ -566,7 +567,18 @@ var Dashboard = {
|
|||
|
||||
Dashboard.showLoadingMsg();
|
||||
|
||||
ApiClient.getDirectoryContents(path, { includeDirectories: true }).done(function (folders) {
|
||||
var promise;
|
||||
|
||||
if (path === "Network") {
|
||||
promise = ApiClient.getNetworkComputers();
|
||||
}
|
||||
else if (path) {
|
||||
promise = ApiClient.getDirectoryContents(path, { includeDirectories: true });
|
||||
} else {
|
||||
promise = ApiClient.getDrives();
|
||||
}
|
||||
|
||||
promise.done(function (folders) {
|
||||
|
||||
$('#txtDirectoryPickerPath', page).val(path || "");
|
||||
|
||||
|
@ -683,7 +695,8 @@ var Dashboard = {
|
|||
|
||||
var url = ApiClient.getUserImageUrl(user.Id, {
|
||||
width: 225,
|
||||
tag: user.PrimaryImageTag
|
||||
tag: user.PrimaryImageTag,
|
||||
type: "Primary"
|
||||
});
|
||||
|
||||
headerHtml += '<img src="' + url + '" />';
|
||||
|
|
Loading…
Reference in New Issue
Block a user