Merged PR 22593: adding tile to entity type url param
taking into account entity type of type 'tile' in url parameter. this will allow us to enter the tile embed page in the sample through the url
This commit is contained in:
Родитель
1928f05207
Коммит
563448ff29
|
@ -30,8 +30,15 @@ $(document).ready(function() {
|
|||
var mode = modeUrlParam ? modeUrlParam : "view";
|
||||
|
||||
var entityTypeUrlParam = GetParameterByName("entityType");
|
||||
var entityType = entityTypeUrlParam == "dashboard" ? EntityType.Dashboard : EntityType.Report;
|
||||
|
||||
var entityType;
|
||||
if (entityTypeUrlParam == "dashboard") {
|
||||
entityType = EntityType.Dashboard;
|
||||
} else if (entityTypeUrlParam == "tile") {
|
||||
entityType = EntityType.Tile;
|
||||
} else {
|
||||
entityType = EntityType.Report;
|
||||
}
|
||||
|
||||
// set mode and type in session.
|
||||
SetSession(SessionKeys.EntityType, entityType);
|
||||
SetSession(SessionKeys.EmbedMode, mode);
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
Загрузка…
Ссылка в новой задаче