silvrgit/app/app.js
2017-04-20 13:42:55 +01:00

20 lines
390 B
JavaScript

(function() {
document.title = 'Slack';
})();
let popitout = function(url) {
let newwindow = window.open(url, 'name', 'height=600,width=570');
if (window.focus) {
newwindow.focus();
}
return false;
};
let popitoutSmall = function(url) {
let newwindow = window.open(url, 'name', 'height=400,width=520');
if (window.focus) {
newwindow.focus();
}
return false;
};