Привет, фронтендщики!
Ежели есть соображения - делитесь!
Суть траблы:
Генерит ошибку в консоли, все работает, но это не камильфо когда ошибка и я не могу ее поймать -
 Uncaught TypeError: Object function (e,n){return new x.fn.init(e,n,t)} has no method 'widget' 
Страница проблемы 
http://vzazerkalie.com/nayami/p_d_page.html
код, который наплёл:
$(function(){
		$('.rect-image img').draggable({
			revert	   :'invalid',
			helper	   :'clone',
			cursor	   :'move'
		});
		$('.placeholder-for-image-redact img').draggable({
			revert	   :'invalid',
			helper	   :'clone',
			cursor	   :'move'
		});
		$('.placeholder-for-image-redact').droppable({
			accept:'img',
			activeClass:'hightlight-image-place',
			drop: function( event, ui ) {
				var redactImage = $(ui.draggable);
				redactImage.fadeOut(100, function(){
					$(this).appendTo('.placeholder-for-image-redact').fadeIn(200, function () {
						$('.placeholder-for-image-redact img').css({
							'margin':'5% auto',
							'display':'block'
						})
					});
				});
			}
		});
		$('.rect-image').droppable({
			accept:'img',
			activeClass:'hightlight-image-place',
			drop: function( event, ui ) {
				var redactImage2 = $(ui.draggable);
				redactImage2.fadeOut(100, function(){
					$(this).appendTo('.rect-image').fadeIn(200);
				});
			}
		});
	});