Advertisement
Guest User

Untitled

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