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

show.js.haml « graphs « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b7c9b4113e92e31d6803dcea43341c487bbf087f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
:plain
  controller = new ContributorsStatGraph
  controller.init(#{@log})

  $("select").change( function () {
    var field = $(this).val()
    controller.set_current_field(field)
    controller.redraw_master()
    controller.redraw_authors()
  })

  $("#brush_change").change( function () {
    controller.change_date_header()
    controller.redraw_authors()
  })