mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Rename registerEditPane function
This commit is contained in:
parent
87ac831c8a
commit
234e77fd06
@ -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"),
|
||||
|
Loading…
Reference in New Issue
Block a user