patternfly
Version:
This reference implementation of PatternFly is based on [Bootstrap v3](http://getbootstrap.com/). Think of PatternFly as a "skinned" version of Bootstrap with additional components and customizations.
17 lines (12 loc) • 316 B
JavaScript
(function (window) {
'use strict';
var patternfly = {
version: "3.59.4"
};
// definition of breakpoint sizes for tablet and desktop modes
patternfly.pfBreakpoints = {
'tablet': 768,
'desktop': 1200
};
window.patternfly = patternfly;
})(typeof window !== 'undefined' ? window : global);