Method: Redditor::Admin::ImageBlocksController#destroy
- Defined in:
- app/controllers/redditor/admin/image_blocks_controller.rb
#destroy ⇒ Object
21 22 23 24 25 26 27 28 |
# File 'app/controllers/redditor/admin/image_blocks_controller.rb', line 21 def destroy @content_block = @page.images.find(params[:id]) if @content_block.destroy render js: "$('#image_#{@content_block.id}').closest('dd').remove();" else render js: "alert('Контент-блок не удален');" end end |