We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 513a7e5 + 05af71d commit 0d42e2dCopy full SHA for 0d42e2d
src/ripple.js
@@ -14,6 +14,7 @@ var Ripple = {
14
});
15
16
var bg = binding.value || Ripple.color || 'rgba(0, 0, 0, 0.35)';
17
+ var zIndex = Ripple.zIndex || '9999';
18
19
function rippler(event, el) {
20
var target = el;
@@ -44,7 +45,7 @@ var Ripple = {
44
45
ripple.style.borderRadius= '50%';
46
ripple.style.pointerEvents= 'none';
47
ripple.style.position= 'relative';
- ripple.style.zIndex= '9999';
48
+ ripple.style.zIndex= zIndex;
49
ripple.style.backgroundColor = bg;
50
51
//Styles for rippleContainer
0 commit comments