From ecd771ccdfe54b08ea7f80f64667228b7938238d Mon Sep 17 00:00:00 2001 From: Ciro Santilli Date: Mon, 14 Jul 2014 11:50:35 +0200 Subject: Move coffee to assets/project --- app/assets/javascripts/project.js.coffee | 5 +++++ app/views/projects/_home_panel.html.haml | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/assets/javascripts/project.js.coffee b/app/assets/javascripts/project.js.coffee index 4262418fd5e..d81cc087df9 100644 --- a/app/assets/javascripts/project.js.coffee +++ b/app/assets/javascripts/project.js.coffee @@ -46,3 +46,8 @@ $ -> $.cookie('hide_no_ssh_message', 'false', { path: path }) $(@).parents('.no-ssh-key-message').hide() e.preventDefault() + + $('.project-home-panel .star').on 'ajax:success', (e, data, status, xhr) -> + $(@).toggleClass('on').find('.count').html(data.star_count) + .on 'ajax:error', (e, xhr, status, error) -> + new Flash('Star toggle failed. Try again later.', 'alert') diff --git a/app/views/projects/_home_panel.html.haml b/app/views/projects/_home_panel.html.haml index 6d7f859c22a..48f5a90cf23 100644 --- a/app/views/projects/_home_panel.html.haml +++ b/app/views/projects/_home_panel.html.haml @@ -44,11 +44,6 @@ title: 'Unstar this project.', starred: true, signed_in: true - :coffeescript - $('.star').on 'ajax:success', (e, data, status, xhr) -> - $(@).toggleClass('on').find('.count').html(data.star_count) - .on 'ajax:error', (e, xhr, status, error) -> - new Flash('Star toggle failed. Try again later.', 'alert') - else = render 'link_to_toggle_star', title: 'You must sign in to star a project.', -- cgit v1.2.1