File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616
1717 function addCSS ( ) {
1818 let myID = 'imageModsCSS' ;
19- //already there?
19+ // already there?
2020 if ( null === document . getElementById ( myID ) ) {
2121 let headElem = document . getElementsByTagName ( "HEAD" ) [ 0 ] ;
2222 let customStyleElem = document . createElement ( "style" ) ;
2323 customStyleElem . setAttribute ( 'id' , myID ) ;
2424 customStyleElem . innerText = `
25- .material-icons-fontsize {
26- font-size: 48px;
27- }
28- .lupe {
29- z-index: 9999;
30- position: absolute;
31- left: 0px;
32- }
33- .bottom {
34- bottom: 0px;
35- }
36- ` ;
25+ .material-icons-fontsize {
26+ font-size: 48px;
27+ }
28+ .lupe {
29+ z-index: 9999;
30+ position: absolute;
31+ left: 0px;
32+ }
33+ .bottom {
34+ bottom: 0px;
35+ }
36+ ` ;
3737 headElem . appendChild ( customStyleElem ) ;
3838 }
3939 }
7272 imageUrl = myData . imageUrl + "=s0" ;
7373 addFullImageButton ( elem [ 0 ] , imageUrl , 'mainImage' ) ;
7474
75- //Supporting Image
75+ // Supporting Image
7676 if ( myData . supportingImageUrl ) {
7777 imageUrl = myData . supportingImageUrl + "=s0" ;
7878 addFullImageButton ( elem [ 1 ] , imageUrl , 'supportingImage' )
You can’t perform that action at this time.
0 commit comments