mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-15 04:25:41 +00:00
15 lines
364 B
JavaScript
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
|
|
});
|
|
}
|
|
};
|