Fix for page_part and widget back-end
This commit is contained in:
		
							parent
							
								
									2d6b70b97f
								
							
						
					
					
						commit
						269e5b033f
					
				|  | @ -52,8 +52,8 @@ class Page < Item | ||||||
|             current_part.update_attributes(:kind => menu_part.kind, :public_r_tag => menu_part.public_r_tag, :public_r_tag_object_id => menu_part.public_r_tag_object_id) |             current_part.update_attributes(:kind => menu_part.kind, :public_r_tag => menu_part.public_r_tag, :public_r_tag_object_id => menu_part.public_r_tag_object_id) | ||||||
|           end |           end | ||||||
|         end |         end | ||||||
|         else |       elsif current_part.new_record? | ||||||
|           if current_part.new_record? |         PagePart.without_callback(:save, :after, :update_parent) do | ||||||
|           current_part.save |           current_part.save | ||||||
|         end |         end | ||||||
|       end |       end | ||||||
|  |  | ||||||
|  | @ -206,7 +206,12 @@ module ParserCommon | ||||||
|         when 'text' |         when 'text' | ||||||
|           ret << part.content rescue '' |           ret << part.content rescue '' | ||||||
|         when 'module_widget' |         when 'module_widget' | ||||||
|           url = "/panel/#{part.module_app.key}/widget/#{part.widget_path}?inner=true" |           url = case part.widget_path | ||||||
|  |                 when 'default_widget' | ||||||
|  |                     "/panel/orbit_app/widget/#{part.widget_style}?inner=true" | ||||||
|  |                   else | ||||||
|  |                     "/panel/#{part.module_app.key}/widget/#{part.widget_path}?inner=true" | ||||||
|  |                 end | ||||||
|           options = "&category_id=#{!part[:category].blank? ? part[:category].blank? : category}&tag_id=#{!part[:tag].blank? ? part[:tag] : tag}&page=#{params[:page]}&search_query=#{params[:search_query]}&part_title=#{Rack::Utils.escape(part_title).gsub("+", "%20") rescue nil}" |           options = "&category_id=#{!part[:category].blank? ? part[:category].blank? : category}&tag_id=#{!part[:tag].blank? ? part[:tag] : tag}&page=#{params[:page]}&search_query=#{params[:search_query]}&part_title=#{Rack::Utils.escape(part_title).gsub("+", "%20") rescue nil}" | ||||||
|           ret << "<div class='dymanic_load widget' path='#{url + options}'></div>" |           ret << "<div class='dymanic_load widget' path='#{url + options}'></div>" | ||||||
|         when 'public_r_tag' |         when 'public_r_tag' | ||||||
|  |  | ||||||
		Reference in New Issue