Advertisement
fruffl

this._persist.before.penetrate.children()

Nov 11th, 2015
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.99 KB | None | 0 0
  1. // proto penetration tests:
  2.  
  3.         _penetrate: function()
  4.         {
  5.                 var     t = this,
  6.                         m = $.tri4m.widget.hook.uuid.cache.__dict,
  7.                         s = $.tri4m.widget.hook.uuid.cache.__mapping,
  8.                         x = $.tri4m.widget.hook.uuid.cache.__class,
  9.                         n = this.widgetName,
  10.                         e = this.element;
  11.                 ...
  12.  
  13.                 this._persist.before.penetrate.children();
  14.                 this._persist.wrap.penetrate.children();
  15.                
  16.                 for(var i in s[n])
  17.                 {
  18.                         ...
  19.  
  20.                         this._persist.before.penetrate.child(i, d);
  21.                        
  22.                         ...
  23.                        
  24.                         this._persist.after.penetrate.child(i, d);
  25.                 }
  26.  
  27.                 this._persist.wrap.penetrate.children();
  28.                 this._persist.after.penetrate.children();
  29.         },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement