mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	Rename registerEditPane function
This commit is contained in:
		| @@ -1911,7 +1911,7 @@ RED.editor = (function() { | ||||
|             return customEditTypes; | ||||
|         }, | ||||
|  | ||||
|         registerEditorPane: function(type, definition, filter) { | ||||
|         registerEditPane: function(type, definition, filter) { | ||||
|             if (filter) { | ||||
|                 filteredEditPanes[type] = filter | ||||
|             } | ||||
|   | ||||
| @@ -1,6 +1,6 @@ | ||||
| ;(function() { | ||||
|  | ||||
|     RED.editor.registerEditorPane("editor-tab-appearance", function(node) { | ||||
|     RED.editor.registerEditPane("editor-tab-appearance", function(node) { | ||||
|         return { | ||||
|             label: RED._("editor-tab.appearance"), | ||||
|             name: RED._("editor-tab.appearance"), | ||||
|   | ||||
| @@ -1,6 +1,6 @@ | ||||
| ;(function() { | ||||
|  | ||||
|     RED.editor.registerEditorPane("editor-tab-description", function(node) { | ||||
|     RED.editor.registerEditPane("editor-tab-description", function(node) { | ||||
|         return { | ||||
|             label: RED._("editor-tab.description"), | ||||
|             name: RED._("editor-tab.description"), | ||||
|   | ||||
| @@ -1,6 +1,6 @@ | ||||
| ;(function() { | ||||
|  | ||||
|     RED.editor.registerEditorPane("editor-tab-envProperties", function(node) { | ||||
|     RED.editor.registerEditPane("editor-tab-envProperties", function(node) { | ||||
|         return { | ||||
|             label: RED._("editor-tab.envProperties"), | ||||
|             name: RED._("editor-tab.envProperties"), | ||||
|   | ||||
| @@ -1,6 +1,6 @@ | ||||
| ;(function() { | ||||
|  | ||||
|     RED.editor.registerEditorPane("editor-tab-flow-properties", function(node) { | ||||
|     RED.editor.registerEditPane("editor-tab-flow-properties", function(node) { | ||||
|         return { | ||||
|             label: RED._("editor-tab.properties"), | ||||
|             name: RED._("editor-tab.properties"), | ||||
|   | ||||
| @@ -1,6 +1,6 @@ | ||||
| ;(function() { | ||||
|  | ||||
|     RED.editor.registerEditorPane("editor-tab-properties", function(node) { | ||||
|     RED.editor.registerEditPane("editor-tab-properties", function(node) { | ||||
|         return { | ||||
|             label: RED._("editor-tab.properties"), | ||||
|             name: RED._("editor-tab.properties"), | ||||
|   | ||||
| @@ -30,7 +30,7 @@ | ||||
|         '</div>'+ | ||||
|     '</form>'; | ||||
|  | ||||
|     RED.editor.registerEditorPane("editor-tab-subflow-module", function(node) { | ||||
|     RED.editor.registerEditPane("editor-tab-subflow-module", function(node) { | ||||
|         return { | ||||
|             label: RED._("editor-tab.module"), | ||||
|             name: RED._("editor-tab.module"), | ||||
|   | ||||
		Reference in New Issue
	
	Block a user