diff options
author | gjones2 <gary@pointblanksecurity.com> | 2012-11-20 14:50:56 -0500 |
---|---|---|
committer | gjones2 <gary@pointblanksecurity.com> | 2012-11-20 14:50:56 -0500 |
commit | e7a9ba25d437b6a145a6260594c27f9dc0ac0495 (patch) | |
tree | 00b7189380be39dd79397eeebaec10528991fe65 /httemplate | |
parent | 044e4ea5533f1c14697b7ad408dc0cf0e0327abb (diff) |
Update httemplate/elements/selectlayers.html
Changed '""' to 'block'.
This code was generating "<DIV ID="paybydCARD" STYLE="display: ""; z-index: 1">
This might cause unexpected behavior in some browsers and the display property should be a block element (when displayed).
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/elements/selectlayers.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/elements/selectlayers.html b/httemplate/elements/selectlayers.html index dd279bd16..01fd590ca 100644 --- a/httemplate/elements/selectlayers.html +++ b/httemplate/elements/selectlayers.html @@ -146,7 +146,7 @@ Example: <DIV ID="<% $key %>d<% $layer %>" STYLE="<% $selected_layer eq $layer - ? 'display: "" ; z-index: 1' + ? 'display: block; z-index: 1' : 'display: none; z-index: 0' %>" > |