flaviusmatis / flaviusmatis/easyModal.js
Not working in chrom 64 Bit on Windows
Open
- Dominant language
- JavaScript
- Stars
- 117
- Forks
- 41
- PR merge metrics
- No merged PRs in 30d
Description
When using easyModal on a chrome 64 Bit on Windows the modal and the panel are both at the same z index thus making the modal unusable.
Checking with dev tools showed a very large integer for the z-index of both elements.
As a workaround setting up a zIndex function solved the issue:
var easyModalOptions={
zIndex: function(){
return 10;
}
}
$(editModal).easyModal(easyModalOptions);
used version: v1.3.2
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.