Select to view content in your preferred language

Adding a link and image to an AGOL template footer

1820
0
04-01-2014 07:40 PM
CrileDoscher
Deactivated User
Hi all -

I'm using an AGOL template to develop a web application using the Legend template. The template provides a footer that I'd like to insert a logo image and a link into but it's not entirely clear to me how to do this (or even if I can). The \config\default.js file allows for a "footer_text" variable which then gets used as "footerText" in \js\main.js within a footer section (quoted below). I've tried various ways of inserting HTML text between the span tag but to no avail. Has anyone got any suggestion on how to make this work?

Thanks -

Crile

from \js\main.js:

//Footer
if(this.config.footer){
   //add a footer
    var footerText = (this.config.footer_text) ? this.config.footer_text : null;
    if(footerText){
        var footerContent = "<span>" + footerText + "</span>";
       this._addContentPane("footer", "bottom", footerContent, null);
       }
}

The most recent things I've tried have been:

In default.js either:
"footer_logo_url": "<IMG SRC="http://url/images/Logo.jpg">",

or

"footer_logo_url": "http://url/images/Logo.jpg",

along with this in the main.js footer section:
var footerContent = "<span>" + footerText + " " + footerLogoURL + "</span>";

I can insert new text in a similar way but not an image (and I haven't even tried including a hyperlink).

Thanks -

Crile
0 Kudos
0 Replies