File tree Expand file tree Collapse file tree 4 files changed +12
-18
lines changed Expand file tree Collapse file tree 4 files changed +12
-18
lines changed Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ function OpenInteractStep() {
135135 }
136136 else
137137 {
138- $ ( "#settings" ) . load ( "settings_interact.html" , function ( ) {
138+ $ ( "#settings" ) . load ( "settings_interact.html" , function ( ) {
139139 SetToggleHandler ( "report-operations-div" ) ;
140140 SetToggleHandler ( "page-operations-div" ) ;
141141 SetToggleHandler ( "events-operations-div" ) ;
Original file line number Diff line number Diff line change @@ -85,14 +85,14 @@ function AddImgToNewOperations(){
8585 var newListItems = $ ( '.newOperation' ) ;
8686 newListItems . each ( function ( index , value )
8787 {
88- var pElement = document . createElement ( "p " ) ;
89- pElement . innerText = value . innerText ;
88+ var spanElement = document . createElement ( "span " ) ;
89+ spanElement . innerText = value . innerText ;
9090
9191 var newImgElement = document . createElement ( "img" ) ;
9292 newImgElement . src = "images\\new.svg" ;
9393
9494 value . innerText = '' ;
95- value . appendChild ( pElement ) ;
95+ value . appendChild ( spanElement ) ;
9696 value . appendChild ( newImgElement ) ;
9797
9898 } ) ;
Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ <h3>Sample Report</h3>
1111 </ div >
1212
1313 < div id ="sampleQna " class ="pbi-line ">
14- < div class ="pageTitle ">
15- < div class ="newItem ">
16- < h3 > Sample Q&A</ h3 >
17- < img src ="images\new.svg "/>
18- </ div >
19- < h8 > You can embed a sample Q&A and interact with Power BI Embedded firsthand by clicking below.</ h8 >
20- </ div >
14+ < div class ="pageTitle ">
15+ < div class ="newItem ">
16+ < h3 > Sample Q&A</ h3 >
17+ < img src ="images\new.svg "/>
18+ </ div >
19+ < h8 > You can embed a sample Q&A and interact with Power BI Embedded firsthand by clicking below.</ h8 >
20+ </ div >
2121 < div class ="settings ">
2222 < button id ="GoToEmbedStepButton_Qna " class ="blueButton " onclick ="OpenEmbedStepWithSample('Qna') "> Embed sample Q&A</ button >
2323 </ div >
Original file line number Diff line number Diff line change 423423 padding : 0px 20px 0px 0px ;
424424}
425425
426- .newOperation {
427- display : flex;
428- }
429-
430- .newOperation p {
431- display : inline-block;
426+ .newOperation span {
432427 padding-right : 10px ;
433- margin-bottom : 0px ;
434428}
435429
436430.newOperation img {
You can’t perform that action at this time.
0 commit comments