Major integration of Courtland's design into the QuickVotes.
[selectricity-live] / app / controllers / application.rb
index 23c878feca92f6d252034ffd965f97612bb22dae..aeb2204f38ef75015b229032463114d7975330be 100644 (file)
@@ -5,6 +5,17 @@ class ApplicationController < ActionController::Base
   include AuthenticatedSystem
   helper :user
   require_dependency "user"
-  
-  
+  before_filter :add_stylesheets
+   
+  def initialize
+    @stylesheets = []
+  end
+            
+  def add_stylesheets
+    file = "#{Dir.pwd}/public/stylesheets/#{controller_name}.css"
+    if File.exists? file
+      @stylesheets << controller_name
+    end
+  end
+
 end

Benjamin Mako Hill || Want to submit a patch?