Module: CkeditorInterface

Defined in:
app/models/ckeditor_interface.rb

Defined Under Namespace

Modules: CkeditorInstanceMethods

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



2
3
4
5
6
7
# File 'app/models/ckeditor_interface.rb', line 2

def self.included(base)
  base.class_eval {
    include CkeditorInstanceMethods
    before_filter :add_ckeditor_interface, :only => [:edit, :new]
  }
end