17 lines
316 B
JavaScript
17 lines
316 B
JavaScript
(function (window) {
|
|
'use strict';
|
|
|
|
var patternfly = {
|
|
version: "3.59.3"
|
|
};
|
|
|
|
// definition of breakpoint sizes for tablet and desktop modes
|
|
patternfly.pfBreakpoints = {
|
|
'tablet': 768,
|
|
'desktop': 1200
|
|
};
|
|
|
|
window.patternfly = patternfly;
|
|
|
|
})(typeof window !== 'undefined' ? window : global);
|