mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-15 12:34:17 +00:00
11 lines
198 B
JavaScript
11 lines
198 B
JavaScript
'use strict';
|
|
|
|
var utils = {
|
|
getWindowWidth: function(){
|
|
return window.innerWidth
|
|
|| document.documentElement.clientWidth
|
|
|| document.body.clientWidth;
|
|
}
|
|
};
|
|
|