netzke/netzke-core

View on GitHub
lib/netzke/plugin.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Netzke
  class Plugin < Base
    client_class do |c|
      # We need to inherit from Ext.Component so that we recieve goodies like event handling
      c.extend = "Ext.Component"
    end
  end
end