Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Sep 18th, 2012  |  syntax: None  |  size: 0.21 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. class PagesController < ApplicationController
  2.  
  3.  
  4.   def index
  5.     @themes = Theme.page(params[:page]).per(6)
  6.   end
  7.  
  8.   def filter
  9.     respond_to do |format|
  10.       format.js { render :layout => false }
  11.     end
  12.   end
  13.  
  14. end