summaryrefslogtreecommitdiff
path: root/app/assets/javascripts
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2015-09-18 16:35:38 -0400
committerRobert Speicher <rspeicher@gmail.com>2015-09-18 16:35:38 -0400
commit68b15af46c1ddc44552252bd097d9748693dda23 (patch)
tree3e1bb5b856a84fc297263705dbcea431cf9e8242 /app/assets/javascripts
parentdfa32123e3c655352481a9b00ecb0f11ea631c0a (diff)
downloadgitlab-ce-68b15af46c1ddc44552252bd097d9748693dda23.tar.gz
Fix IssuableContext javascript
We were calling `affix` before the events were bound so they never triggered correctly. Closes #2597
Diffstat (limited to 'app/assets/javascripts')
-rw-r--r--app/assets/javascripts/issuable_context.js.coffee9
1 files changed, 5 insertions, 4 deletions
diff --git a/app/assets/javascripts/issuable_context.js.coffee b/app/assets/javascripts/issuable_context.js.coffee
index 176d9cabefa..c4d3e619f5e 100644
--- a/app/assets/javascripts/issuable_context.js.coffee
+++ b/app/assets/javascripts/issuable_context.js.coffee
@@ -11,12 +11,13 @@ class @IssuableContext
$(this).submit()
$('.issuable-details').waitForImages ->
+ $('.issuable-affix').on 'affix.bs.affix', ->
+ $(@).width($(@).outerWidth())
+ .on 'affixed-top.bs.affix affixed-bottom.bs.affix', ->
+ $(@).width('')
+
$('.issuable-affix').affix offset:
top: ->
@top = ($('.issuable-affix').offset().top - 70)
bottom: ->
@bottom = $('.footer').outerHeight(true)
- $('.issuable-affix').on 'affix.bs.affix', ->
- $(@).width($(@).outerWidth())
- .on 'affixed-top.bs.affix affixed-bottom.bs.affix', ->
- $(@).width('')