mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-08-27 00:16:44 +00:00
Merge pull request #470 from Jopyth/patch-1
Change position from absolute to fixed
This commit is contained in:
@@ -32,6 +32,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Solve an issue where module margins would appear when the first module of a section was hidden.
|
- Solve an issue where module margins would appear when the first module of a section was hidden.
|
||||||
|
- Solved visual display errors on chrome, if all modules in one of the right sections are hidden
|
||||||
|
|
||||||
## [2.0.5] - 2016-09-20
|
## [2.0.5] - 2016-09-20
|
||||||
|
|
||||||
|
@@ -196,7 +196,7 @@ var MM = (function() {
|
|||||||
// since it's fade out anyway, we can see it lay above or
|
// since it's fade out anyway, we can see it lay above or
|
||||||
// below other modules. This works way better than adjusting
|
// below other modules. This works way better than adjusting
|
||||||
// the .display property.
|
// the .display property.
|
||||||
moduleWrapper.style.position = "absolute";
|
moduleWrapper.style.position = "fixed";
|
||||||
|
|
||||||
if (typeof callback === "function") { callback(); }
|
if (typeof callback === "function") { callback(); }
|
||||||
}, speed);
|
}, speed);
|
||||||
|
Reference in New Issue
Block a user