Fix status images

This commit is contained in:
Piotr Sarnacki 2015-02-10 09:43:17 +01:00
parent 39b780e615
commit 55cf221b56
3 changed files with 3 additions and 3 deletions

View File

@ -10,5 +10,5 @@
<p>
<label>{{view Ember.Select contentBinding="view.formats" selectionBinding="view.statusImageFormat"}}</label>
{{view 'status-image' valueBinding="view.statusString" class="url" rows=3}}
{{view 'status-image-input' valueBinding="view.statusString" class="url" rows=3}}
</p>

View File

@ -36,7 +36,7 @@ format = (version, slug, branch) ->
url = urlRepo(slug)
switch version
when 'Image URL' then statusImageUrl(url, slug, branch)
when 'Image URL' then statusImageUrl(slug, branch)
when 'Markdown' then markdownStatusImage(url, slug, branch)
when 'Textile' then textileStatusImage(url, slug, branch)
when 'Rdoc' then rdocStatusImage(url, slug, branch)

View File

@ -23,7 +23,7 @@ View = BasicView.extend
actions:
statusImages: () ->
@popupCloseAll()
view = StatusImagesView.create(toolsView: this)
view = StatusImagesView.create(toolsView: this, container: @container)
BasicView.currentPopupView = view
view.appendTo($('body'))
return false