Skip to content

Commit

Permalink
upt
Browse files Browse the repository at this point in the history
  • Loading branch information
robert0609 committed Mar 27, 2015
1 parent 9ec2654 commit 83a7050
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/js/Evoque.Container.js
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ $.container = (function (self)
show(toShowDiv);
if (toShowDiv.length > 0 && onShowIsFn)
{
onShow.call(toShowDiv[0]);
onShow.call(toShowDiv[0], { backMode: backFlag });
}
}
}, 400);
Expand Down Expand Up @@ -297,7 +297,7 @@ $.container = (function (self)
show(toShowDiv);
if (toShowDiv.length > 0 && onShowIsFn)
{
onShow.call(toShowDiv[0]);
onShow.call(toShowDiv[0], { backMode: backFlag });
}
}
}, 400);
Expand Down Expand Up @@ -333,7 +333,7 @@ $.container = (function (self)
show(toShowDiv);
if (toShowDiv.length > 0 && onShowIsFn)
{
onShow.call(toShowDiv[0]);
onShow.call(toShowDiv[0], { backMode: backFlag });
}
window.setTimeout(function () {
toShowDiv.setStyle('webkitTransform', 'translateY(-' + top2 + 'px)');
Expand All @@ -353,7 +353,7 @@ $.container = (function (self)
show(toShowDiv);
if (toShowDiv.length > 0 && onShowIsFn)
{
onShow.call(toShowDiv[0]);
onShow.call(toShowDiv[0], { backMode: backFlag });
}
window.setTimeout(function () {
toShowDiv.setStyle('webkitTransform', 'translateX(0px)');
Expand All @@ -371,7 +371,7 @@ $.container = (function (self)
show(toShowDiv);
if (toShowDiv.length > 0 && onShowIsFn)
{
onShow.call(toShowDiv[0]);
onShow.call(toShowDiv[0], { backMode: backFlag });
}
}
}
Expand Down

0 comments on commit 83a7050

Please sign in to comment.