silvrgit/app/app.js

20 lines
390 B
JavaScript
Raw Normal View History

2017-03-22 15:48:36 +00:00
(function() {
2017-04-20 12:42:55 +00:00
document.title = 'Slack';
2016-03-08 21:52:21 +00:00
})();
2017-03-22 15:48:36 +00:00
let popitout = function(url) {
let newwindow = window.open(url, 'name', 'height=600,width=570');
2016-03-08 21:52:21 +00:00
if (window.focus) {
2017-03-22 15:48:36 +00:00
newwindow.focus();
2016-03-08 21:52:21 +00:00
}
return false;
};
2017-03-22 15:48:36 +00:00
let popitoutSmall = function(url) {
let newwindow = window.open(url, 'name', 'height=400,width=520');
2016-03-08 21:52:21 +00:00
if (window.focus) {
2016-04-28 09:48:48 +00:00
newwindow.focus();
2016-03-08 21:52:21 +00:00
}
return false;
};