d7a48443ce
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
19 lines
518 B
Text
19 lines
518 B
Text
- if @success
|
|
: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()
|
|
})
|
|
- else
|
|
:plain
|
|
$('.stat-graph').replaceWith('<div class="alert alert-danger">Failed to load graph</div>')
|