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:
Omri Armstrong 2017-08-03 08:43:21 +00:00
Родитель 1928f05207
Коммит 563448ff29
2 изменённых файлов: 10 добавлений и 3 удалений

Просмотреть файл

@ -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);

2
dist/powerbi.js.map поставляемый

Различия файлов скрыты, потому что одна или несколько строк слишком длинны