Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. function tooltipMeal () {
  2. if($(window).width() < 992) {
  3. $('.board-meal-columns-alternatives-dish').tooltip('disable');
  4. } else {
  5. $('.board-meal-columns-alternatives-dish').tooltip('enable');
  6. }
  7. }
  8. tooltipMeal();
  9.  
  10. $(window).resize(function () {
  11. tooltipMeal();
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement