# File lib/ramaze/helper/pager.rb, line 239
  def limit
    if @start_idx > 0
      { :limit => @limit, :offset => @start_idx }
    else
      { :limit => @limit }
    end
  end