modal code cleanup
This commit is contained in:
Родитель
2551920a60
Коммит
ddc787b256
|
@ -8,7 +8,6 @@
|
|||
left: 0;
|
||||
display: none;
|
||||
z-index: 9000;
|
||||
text-align: justify;
|
||||
opacity: 0;
|
||||
overflow: hidden;
|
||||
color: #000;
|
||||
|
|
|
@ -25,11 +25,6 @@ z.prefixUpper = z.prefix[0].toUpperCase() + z.prefix.substr(1);
|
|||
}
|
||||
})();
|
||||
|
||||
z.body.on('touchmove', '.overlay', function(e){
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
});
|
||||
|
||||
// Initialize webtrends tracking.
|
||||
z.page.on('fragmentloaded', webtrendsAsyncInit);
|
||||
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
(function() {
|
||||
z.body.on('touchmove', '.overlay', function(e){
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
});
|
||||
|
||||
function dismiss() {
|
||||
var $overlay = $('.overlay.show');
|
||||
if ($overlay.length) {
|
||||
|
@ -6,6 +11,7 @@
|
|||
$(window).trigger('overlay_dismissed');
|
||||
}
|
||||
}
|
||||
|
||||
z.page.on('fragmentloaded', function(e) {
|
||||
// Dismiss overlay when we load a new fragment.
|
||||
dismiss();
|
||||
|
|
|
@ -86,6 +86,7 @@ CSS = {
|
|||
'css/mkt/device.less',
|
||||
'css/mkt/abuse.less',
|
||||
'css/mkt/slider.less',
|
||||
'css/mkt/menu.less',
|
||||
'css/mkt/promo-grid.less',
|
||||
'css/mkt/overlay.less',
|
||||
'css/mkt/search.less',
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
</button>
|
||||
<button class="button cancel fat">
|
||||
{{ _('Cancel') }}
|
||||
</a>
|
||||
</button>
|
||||
</footer>
|
||||
</form>
|
||||
</section>
|
||||
|
|
Загрузка…
Ссылка в новой задаче