Skip to content

Commit

Permalink
refactor: clean up old unused functions
Browse files Browse the repository at this point in the history
  • Loading branch information
cleydyr committed Oct 21, 2024
1 parent 80e9c9b commit 78bae82
Showing 1 changed file with 0 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -979,20 +979,6 @@ PageHelp.show = function () {
$.jStorage.set(Core.qs('action') + '_help', true);
};

var Header = {};

Header.animateLogos = function () {
$('#logo_support div:last').fadeOut(2000, function () {
var logo = $(this);
logo.parent().prepend(this);
logo.show();
});
};

Header.setTime = function () {
$('#clock').text(_d(new Date(), 't'));
};

(function ($) {
$.fn.anyChange = function (handler) {
this.bind("change propertychange keyup input paste", handler);
Expand Down Expand Up @@ -1504,11 +1490,6 @@ $(document).ready(function () {
Core.fixResize();
Core.fixNavigationHeight();

setInterval(Header.animateLogos, 6000);

Header.setTime();
setInterval(Header.setTime, 1000);

var msg = Core.qs('msg');
var level = Core.qs('level') || 'normal';
if (msg) {
Expand Down

0 comments on commit 78bae82

Please sign in to comment.