Files
dss.web/client/assets/utils.js
2016-06-21 21:46:07 +01:00

15 lines
364 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,
sticky: false
});
}
};