Skip to content

Commit

Permalink
Attempt to fix ixsl:ondragstart
Browse files Browse the repository at this point in the history
  • Loading branch information
namedgraph committed Sep 19, 2024
1 parent bc43b23 commit 9ac40ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ exclude-result-prefixes="#all"

<xsl:choose>
<!-- allow drag on the block element itself -->
<xsl:when test="self::div[contains-token(@class, 'container-fluid')]/div[@typeof][contains-token(@class, 'row-fluid')]">
<xsl:when test="self::div[@typeof][contains-token(@class, 'row-fluid')]">
<ixsl:set-property name="dataTransfer.effectAllowed" select="'move'" object="ixsl:event()"/>
<xsl:sequence select="ixsl:call(ixsl:get(ixsl:event(), 'dataTransfer'), 'setData', [ 'text/uri-list', @about ])"/>
</xsl:when>
Expand Down

0 comments on commit 9ac40ca

Please sign in to comment.