소스 검색

Editor warning fix (#10098)

* Terminate statement in Menubar.Add

* Terminate statement in Toolbar

* Terminate statement in Sidebar.Animation

* Terminate statement in Viewport.Info
Tristan VALCKE 8 년 전
부모
커밋
e416bc7b94
4개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 1
      editor/js/Menubar.Add.js
  2. 1 1
      editor/js/Sidebar.Animation.js
  3. 1 1
      editor/js/Toolbar.js
  4. 1 1
      editor/js/Viewport.Info.js

+ 1 - 1
editor/js/Menubar.Add.js

@@ -416,4 +416,4 @@ Menubar.Add = function ( editor ) {
 
 	return container;
 
-}
+};

+ 1 - 1
editor/js/Sidebar.Animation.js

@@ -111,4 +111,4 @@ Sidebar.Animation = function ( editor ) {
 
 	return container;
 
-}
+};

+ 1 - 1
editor/js/Toolbar.js

@@ -60,4 +60,4 @@ var Toolbar = function ( editor ) {
 
 	return container;
 
-}
+};

+ 1 - 1
editor/js/Viewport.Info.js

@@ -81,4 +81,4 @@ Viewport.Info = function ( editor ) {
 
 	return container;
 
-}
+};