Skip to content

Commit

Permalink
* Don't open a modal window for sign in link on mobiles
Browse files Browse the repository at this point in the history
  • Loading branch information
timint committed Feb 7, 2018
1 parent 55a3919 commit 1ed04fd
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -3,7 +3,7 @@

<?php if (empty(customer::$data['id'])) { ?>
<div style="float:right">
<a href="<?php echo document::ilink('login', array('redirect_url' => document::ilink('checkout'))) ?>" data-toggle="lightbox"><?php echo language::translate('title_sign_in', 'Sign In'); ?></a>
<a href="<?php echo document::ilink('login', array('redirect_url' => document::ilink('checkout'))) ?>" data-toggle="lightbox" data-require-window-width="768"><?php echo language::translate('title_sign_in', 'Sign In'); ?></a>
</div>
<?php } ?>

Expand Down

0 comments on commit 1ed04fd

Please sign in to comment.