Merge pull request #297 from Grom-S/patch-1

incorect z-index sorting fixed
This commit is contained in:
Niklas von Hertzen 2013-11-24 03:32:57 -08:00
commit 1d4b1753d6

View File

@ -39,7 +39,7 @@ _html2canvas.Renderer = function(parseQueue, options){
})(parseQueue);
function sortZ(context) {
Object.keys(context).sort().forEach(function(zi) {
Object.keys(context).sort(function(a, b) { return a - b; }).forEach(function(zi) {
var nonPositioned = [],
floated = [],
positioned = [],