В событии
beforeShow: function(instance, current) {
  console.info('done!');
  console.info(current);
}
консоль выдаёт
{
  $content:[div.htmlDataBlock.fancybox, prevObject: k.fn.init(1)]
  $slide: [div.fancybox.fancybox, prevObject: k.fn.init(1)]
  $thumb: null
  contentType: "html"
  forcedDuration: undefined
  index: 0
  isComplete: true
  isLoaded: true
  isLoading: false
 }
но при вызове 
beforeShow: function(instance, current) {
	console.info(current.$content);
}
выдаёт undefined, как правильно обратиться к контенту слайда? что это за свойства, написанные через $
Пример с проблемой в песочнице