Advertisement
Guest User

Untitled

a guest
Jan 30th, 2013
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. qx.Class.define('qx.ui.mobile.form.CheckBoxListCheckBox', {
  2.     extend : qx.ui.mobile.form.CheckBox,
  3.  
  4.     members : {
  5.         // overridden
  6.         _onAppear : function () {
  7.             // we purposely don't call this.base( arguments ) because it would create a label that we don't need
  8.             qx.event.Registration.removeListener( this, 'appear', this.__onAppear, this );
  9.         }
  10.     }
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement