Advertisement
Guest User

Untitled

a guest
Dec 13th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. this.addClass = function() {
  2. console.log(this);
  3. $(window).resize(function() {
  4. if (this.getWindowWidth() > 768) {
  5. this.removeBlackClass();
  6. this.addBlueClass();
  7. this.addOrangeClass();
  8. } else {
  9. this.removeBlueClass();
  10. this.addBlackClass();
  11. }
  12. });
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement