Rename registerEditPane function

This commit is contained in:
Nick O'Leary 2021-09-02 22:12:32 +01:00
parent 87ac831c8a
commit 234e77fd06
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
7 changed files with 7 additions and 7 deletions

View File

@ -1911,7 +1911,7 @@ RED.editor = (function() {
return customEditTypes; return customEditTypes;
}, },
registerEditorPane: function(type, definition, filter) { registerEditPane: function(type, definition, filter) {
if (filter) { if (filter) {
filteredEditPanes[type] = filter filteredEditPanes[type] = filter
} }

View File

@ -1,6 +1,6 @@
;(function() { ;(function() {
RED.editor.registerEditorPane("editor-tab-appearance", function(node) { RED.editor.registerEditPane("editor-tab-appearance", function(node) {
return { return {
label: RED._("editor-tab.appearance"), label: RED._("editor-tab.appearance"),
name: RED._("editor-tab.appearance"), name: RED._("editor-tab.appearance"),

View File

@ -1,6 +1,6 @@
;(function() { ;(function() {
RED.editor.registerEditorPane("editor-tab-description", function(node) { RED.editor.registerEditPane("editor-tab-description", function(node) {
return { return {
label: RED._("editor-tab.description"), label: RED._("editor-tab.description"),
name: RED._("editor-tab.description"), name: RED._("editor-tab.description"),

View File

@ -1,6 +1,6 @@
;(function() { ;(function() {
RED.editor.registerEditorPane("editor-tab-envProperties", function(node) { RED.editor.registerEditPane("editor-tab-envProperties", function(node) {
return { return {
label: RED._("editor-tab.envProperties"), label: RED._("editor-tab.envProperties"),
name: RED._("editor-tab.envProperties"), name: RED._("editor-tab.envProperties"),

View File

@ -1,6 +1,6 @@
;(function() { ;(function() {
RED.editor.registerEditorPane("editor-tab-flow-properties", function(node) { RED.editor.registerEditPane("editor-tab-flow-properties", function(node) {
return { return {
label: RED._("editor-tab.properties"), label: RED._("editor-tab.properties"),
name: RED._("editor-tab.properties"), name: RED._("editor-tab.properties"),

View File

@ -1,6 +1,6 @@
;(function() { ;(function() {
RED.editor.registerEditorPane("editor-tab-properties", function(node) { RED.editor.registerEditPane("editor-tab-properties", function(node) {
return { return {
label: RED._("editor-tab.properties"), label: RED._("editor-tab.properties"),
name: RED._("editor-tab.properties"), name: RED._("editor-tab.properties"),

View File

@ -30,7 +30,7 @@
'</div>'+ '</div>'+
'</form>'; '</form>';
RED.editor.registerEditorPane("editor-tab-subflow-module", function(node) { RED.editor.registerEditPane("editor-tab-subflow-module", function(node) {
return { return {
label: RED._("editor-tab.module"), label: RED._("editor-tab.module"),
name: RED._("editor-tab.module"), name: RED._("editor-tab.module"),