mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
8 lines
No EOL
221 B
JavaScript
8 lines
No EOL
221 B
JavaScript
;window.FP = []; // this array contains the list of all registered plugins
|
|
|
|
var PluginBase = Class.create( {
|
|
initialize: function(o) {
|
|
if( !this.mixin ) this.mixin = {};
|
|
Object.extend( o, this.mixin );
|
|
}
|
|
} ); |