Update MathJax to 1.1 final

This commit is contained in:
Jacques Distler 2011-06-01 14:35:18 -05:00
parent c9ad2c0c6e
commit 0df40cb4cb
71 changed files with 1075 additions and 162 deletions

View file

@ -9,7 +9,7 @@ class WebSweeper < ActionController::Caching::Sweeper
def after_save(record)
if record.is_a?(Web)
web = record
web.pages.each { |page| expire_cached_page(web, page.name) }
web.pages.find_each { |page| expire_cached_page(web, page.name) }
expire_cached_summary_pages(web)
elsif record.is_a?(WikiFile)
record.web.pages_that_link_to_file(record.file_name).each do |page|