Apply firefox workaroud to svg filters
Signed-off-by: Julius Haertl <jus@bitgrid.net>
This commit is contained in:
parent
709f10aa5d
commit
c6af725600
|
@ -1961,11 +1961,13 @@ OC.Util.History = {
|
|||
// https://bugzilla.mozilla.org/show_bug.cgi?id=652991
|
||||
var isFirefox = navigator.userAgent.toLowerCase().indexOf('firefox') > -1;
|
||||
if (isFirefox && parseInt(navigator.userAgent.split('/').pop()) < 51) {
|
||||
var patterns = document.querySelectorAll('[fill^="url(#"], [stroke^="url(#"]');
|
||||
var patterns = document.querySelectorAll('[fill^="url(#"], [stroke^="url(#"], [filter^="url(#invert"]');
|
||||
for (var i = 0, ii = patterns.length, pattern; i < ii; i++) {
|
||||
pattern = patterns[i];
|
||||
pattern.style.fill = pattern.style.fill;
|
||||
pattern.style.stroke = pattern.style.stroke;
|
||||
pattern.removeAttribute("filter");
|
||||
pattern.setAttribute("filter", "url(#invert)");
|
||||
}
|
||||
}
|
||||
if (replace) {
|
||||
|
|
Loading…
Reference in New Issue