Ability to use Ctrl+click on the cryptpad logo in apps

pull/1/head
yflory 2017-02-15 18:31:36 +01:00
parent 7497e0d1c5
commit 7762ffcbff
2 changed files with 0 additions and 8 deletions

View File

@ -321,13 +321,6 @@ define([
var $span = $('<span>').text('CryptPad');
var $aTagBig = $aTagSmall.clone().addClass('large').append($span);
$aTagSmall.addClass('narrow');
var onClick = function (e) {
e.preventDefault();
window.location = "/";
};
$aTagBig.click(onClick);
$aTagSmall.click(onClick);
$linkContainer.append($aTagSmall).append($aTagBig);
};

View File

@ -27,7 +27,6 @@ define([
APP._onRefresh.push(h);
};
var refresh = APP.refresh = function () {
console.log('chnge');
APP._onRefresh.forEach(function (h) {
h();
});