Browse Source

Open links starting with https://telegram.me/ in the same window closes #1042

master
Ihor Polyakov 8 years ago
parent
commit
89717bca88
  1. 6
      app/js/services.js

6
app/js/services.js

@ -4228,7 +4228,11 @@ angular.module('myApp.services', ['myApp.i18n', 'izhukov.utils']) @@ -4228,7 +4228,11 @@ angular.module('myApp.services', ['myApp.i18n', 'izhukov.utils'])
type: 'JUMP_EXT_URL',
url: url
}).then(function () {
window.open(url, '_blank');
var target = '_blank';
if (url.search('https://telegram.me/') === 0) {
target = '_self';
}
window.open(url, target);
});
return true;
}

Loading…
Cancel
Save