Welcome to mirror list, hosted at ThFree Co, Russian Federation.

logo.js « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bd693ab35b82ce8343ef91ebd5b477132593fc77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Generated by CoffeeScript 1.10.0
(function() {
  var clearHighlights, currentTimer, defaultClass, delay, firstPiece, pieceIndex, pieces, start, stop, work;

  Turbolinks.enableProgressBar();

  defaultClass = 'tanuki-shape';

  pieces = ['path#tanuki-right-cheek', 'path#tanuki-right-eye, path#tanuki-right-ear', 'path#tanuki-nose', 'path#tanuki-left-eye, path#tanuki-left-ear', 'path#tanuki-left-cheek'];

  pieceIndex = 0;

  firstPiece = pieces[0];

  currentTimer = null;

  delay = 150;

  clearHighlights = function() {
    return $("." + defaultClass + ".highlight").attr('class', defaultClass);
  };

  start = function() {
    clearHighlights();
    pieceIndex = 0;
    if (pieces[0] !== firstPiece) {
      pieces.reverse();
    }
    if (currentTimer) {
      clearInterval(currentTimer);
    }
    return currentTimer = setInterval(work, delay);
  };

  stop = function() {
    clearInterval(currentTimer);
    return clearHighlights();
  };

  work = function() {
    clearHighlights();
    $(pieces[pieceIndex]).attr('class', defaultClass + " highlight");
    if (pieceIndex === pieces.length - 1) {
      pieceIndex = 0;
      return pieces.reverse();
    } else {
      return pieceIndex++;
    }
  };

  $(document).on('page:fetch', start);

  $(document).on('page:change', stop);

}).call(this);