Skip to content

Commit

Permalink
Fix Issue in PaleMoon 28.5.0
Browse files Browse the repository at this point in the history
Looks like the method name "export" is reserved. When in doubt, verbose!
  • Loading branch information
RealityRipple committed May 3, 2019
1 parent 6e7cae0 commit de905c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chrome/content/binding.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
class="addon-control export"
label="&export.label;"
tooltiptext="&export.tooltiptext;"
oncommand="document.getBindingParent(this).export();" />
oncommand="document.getBindingParent(this).exportXPI();" />
</content>
<implementation>
<field name="_exportBtn">
document.getAnonymousElementByAttribute(this, "anonid", "export-btn");
</field>
<method name="export">
<method name="exportXPI">
<body><![CDATA[
function getExt(extID)
{
Expand Down

0 comments on commit de905c8

Please sign in to comment.