fixed reshare with filters
This commit is contained in:
parent
cadba3f2b7
commit
9cf1f5a023
4 changed files with 15 additions and 5 deletions
|
|
@ -47,8 +47,10 @@ module ApplicationHelper
|
|||
|
||||
def aspect_links aspects, opts={}
|
||||
str = ""
|
||||
aspects.each do |a|
|
||||
str << aspect_li(a, opts)
|
||||
aspects.each do |aspect|
|
||||
str << '<li>'
|
||||
str << link_for_aspect(aspect, :params => opts, 'data-guid' => aspect.id, :class => 'hard_aspect_link').html_safe
|
||||
str << '</li>'
|
||||
end
|
||||
str.html_safe
|
||||
end
|
||||
|
|
|
|||
|
|
@ -4,7 +4,10 @@
|
|||
|
||||
module AspectsHelper
|
||||
def link_for_aspect(aspect, opts={})
|
||||
link_to aspect.name, aspects_path("a_ids[]" => aspect.id), opts
|
||||
opts[:params] ||= {}
|
||||
opts[:params] = opts[:params].merge("a_ids[]" => aspect.id)
|
||||
|
||||
link_to aspect.name, aspects_path( opts[:params] ), opts
|
||||
end
|
||||
|
||||
def remove_link(aspect)
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
-# the COPYRIGHT file.
|
||||
|
||||
|
||||
#publisher{:class => ("closed" unless params[:op])}
|
||||
#publisher{:class => ("closed" unless params[:op] || params[:prefill])}
|
||||
|
||||
#click_to_share
|
||||
= image_tag 'icons/doc_edit.png'
|
||||
|
|
|
|||
|
|
@ -111,8 +111,13 @@ $(document).ready(function(){
|
|||
|
||||
// fill in publisher
|
||||
// (not cached because this element changes)
|
||||
$("#publisher textarea").val(post);
|
||||
|
||||
var textarea = $("#publisher textarea");
|
||||
|
||||
if( textarea.val() == "" ) {
|
||||
textarea.val(post);
|
||||
textarea.focus();
|
||||
}
|
||||
$('html, body').animate({scrollTop:0}, 'fast');
|
||||
|
||||
// reinit listeners on stream
|
||||
|
|
|
|||
Loading…
Reference in a new issue