Browse Source

1277: remove double quotes from maskWith url() impl

tags/3.2.0
Harry Faulkner 1 year ago
parent
commit
a942ca8a65
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/elements/Mask.js

+ 1
- 1
src/elements/Mask.js View File

@@ -44,7 +44,7 @@ registerMethods({
: this.parent().mask().add(element)

// apply mask
return this.attr('mask', 'url("#' + masker.id() + '")')
return this.attr('mask', 'url(#' + masker.id() + ')')
},

// Unmask element

Loading…
Cancel
Save