Fixed ajax bug on categories page.

This commit is contained in:
Benjamin Meichsner 2010-05-28 12:01:19 +02:00
parent a8a243b5fa
commit b71e809f34
1 changed files with 1 additions and 2 deletions

View File

@ -62,10 +62,9 @@ class ArticleCategoriesController < ApplicationController
@article_category = ArticleCategory.find(params[:id])
@article_category.destroy
#id = @article_category.id.to_s #save the id before destroying the object
if @article_category.destroy
render :update do |page|
page['category_'+@article_category.id].visual_effect :drop_out
page['category_'+@article_category.id.to_s].visual_effect :drop_out
end
end
end