Files
dss.web/client/assets/utils.js
Fergal Moran c043b7e19d Live env fixes
2016-06-21 20:33:56 +01:00

16 lines
389 B
JavaScript

'use strict';
var utils = {
getWindowWidth: function () {
return window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
},
showToast: function(title, text, image){
$.gritter.add({
title: title,
text: text,
image: image,
time: 60000,
sticky: false
});
}
};