Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion flowtype.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@
// Context for resize callback
var that = this;
// Make changes upon resize
$(window).resize(function(){changes(that);});
$(window).on('resize orientationchange', function(){
changes(that);
});
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<3

// Set changes on load
changes(this);
});
Expand Down