From 4f8132adc2d5e9890e21f0bd239509ec687871e5 Mon Sep 17 00:00:00 2001 From: Reinier Balt Date: Tue, 24 Mar 2009 16:56:04 +0100 Subject: [PATCH] fix z-index that wqas set to low --- app/controllers/application.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/application.rb b/app/controllers/application.rb index 4e731527..0d24b1c3 100644 --- a/app/controllers/application.rb +++ b/app/controllers/application.rb @@ -266,7 +266,7 @@ class ApplicationController < ActionController::Base def set_zindex_counter # this counter can be used to handle the IE z-index bug - @z_index_counter = 10 + @z_index_counter = 1000 end end