summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/project.js.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/project.js.coffee')
-rw-r--r--app/assets/javascripts/project.js.coffee6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/assets/javascripts/project.js.coffee b/app/assets/javascripts/project.js.coffee
index f524627e0be..e187ec6ab77 100644
--- a/app/assets/javascripts/project.js.coffee
+++ b/app/assets/javascripts/project.js.coffee
@@ -27,8 +27,8 @@ class @Project
$('.update-notification').on 'click', (e) ->
e.preventDefault()
- level = $(this).data('notification-level')
+ level = $(@).data 'notification-level'
$('#notification_level').val(level)
$('#notification-form').submit()
- $(this).parents('ul').find('li.active').removeClass('active')
- $(this).parent().addClass('active') \ No newline at end of file
+ $(@).parents('ul').find('li.active').removeClass 'active'
+ $(@).parent().addClass 'active' \ No newline at end of file