Advertisement
Adam_Martin

Untitled

Feb 15th, 2012
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var $_widgetName = 'iterator_control';
  2.  
  3. widgetControls[ $_widgetName ] =
  4. {
  5.     button_up :
  6.     {
  7.         events :
  8.         {
  9.             click : function ()
  10.             {
  11.                 this.bricks( 'digit' ).clickMe(2)
  12.             }
  13.         },
  14.         actions :
  15.         {
  16.         }
  17.     },
  18.  
  19.     digit :
  20.     {
  21.         events :
  22.         {
  23.  
  24.         },
  25.         actions :
  26.         {
  27.             clickMe : function ( data )
  28.             {
  29.                 alert( data )
  30.             }
  31.         }
  32.     },
  33.  
  34.     button_down :
  35.     {
  36.         events :
  37.         {
  38.  
  39.         },
  40.         actions :
  41.         {
  42.  
  43.         }
  44.     }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement