Skip to content

Instantly share code, notes, and snippets.

@PiJoules
Last active August 29, 2015 14:13
Show Gist options
  • Save PiJoules/7b41e85c99253d7ae30a to your computer and use it in GitHub Desktop.
Save PiJoules/7b41e85c99253d7ae30a to your computer and use it in GitHub Desktop.
Check if Bootstrap 2 or 3 is loaded
// Returns true if bootstrap is loaded, false otherwise
// Checks for Bootstra 2 or 3
// Based off this post: http://stackoverflow.com/questions/13933000/how-to-check-if-twitter-bootstrap-is-loaded
function bootstrapIsEnabled(){
return (typeof $().modal == 'function');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment