Kaynağa Gözat

Prevent error

Temdog007 6 yıl önce
ebeveyn
işleme
8e7e2a2174
1 değiştirilmiş dosya ile 5 ekleme ve 1 silme
  1. 5 1
      editor/js/Editor.js

+ 5 - 1
editor/js/Editor.js

@@ -482,7 +482,11 @@ Editor.prototype = {
 
 	focus: function ( object ) {
 
-		this.signals.objectFocused.dispatch( object );
+		if ( object !== undefined ) {
+
+			this.signals.objectFocused.dispatch( object );
+
+		}
 
 	},