ui.dialog drag event breaking change in 1.8 rc3???

ui.dialog drag event breaking change in 1.8 rc3???

Why can't I use the reference to ui anymore??

  1.     $('#divItemSelector').dialog({
  2.         autoOpen: false,
  3.         bgiframe: true,
  4.         modal: false,
  5.         width: 250,
  6.         position: ['left', 'center'],
  7.         drag: function(event, ui) {
  8.             selLeft = Math.floor($(this).position.left);    //v1.8
  9.             selTop = Math.floor($(this).position.top);      //v1.8
  10.             //selLeft = Math.floor(ui.position.left);       //v1.7
  11.             //selTop = Math.floor(ui.position.top);         //v1.7
  12.         }
  13.     });