initial commit
[namibia] / public / js / vendor / ape-source / Pipe / PipeSingle.js
1 APE.PipeSingle = new Class({
2
3         Extends: APE.Pipe,
4
5         initialize: function(core, options){
6                 this.parent(core, options);
7                 this.type = 'uni';
8                 this.ape.fireEvent('uniPipeCreate',[this, options]);
9         }
10 });