1
0
mirror of https://github.com/MailHops/mailhops-plugin.git synced 2025-05-17 14:50:08 -07:00
mailhops-plugin/chrome/content/mailhopsMap.xul
Andrew Van Tassel 9a5aadb4ad Fixed save language in preferences
Added map provider in preferences
Bump 1.0.2
2015-09-17 23:35:54 -06:00

27 lines
662 B
XML

<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
<dialog id="mailHopsMap"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
buttons="cancel"
onload="loadMap();"
title="MailHops Map"
buttonlabelcancel="Close">
<script>
window.saveTemplate = function(template){
alert(template);
};
</script>
<iframe id="mailhops_iframe" flex="1" width="1024" height="768" style="overflow:hidden;" type="content"></iframe>
<script>
function loadMap(){
var args = window.arguments[0];
document.getElementById('mailhops_iframe').setAttribute('src',args.src);
}
</script>
</dialog>