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;
|
return customEditTypes;
|
||||||
},
|
},
|
||||||
|
|
||||||
registerEditorPane: function(type, definition, filter) {
|
registerEditPane: function(type, definition, filter) {
|
||||||
if (filter) {
|
if (filter) {
|
||||||
filteredEditPanes[type] = filter
|
filteredEditPanes[type] = filter
|
||||||
}
|
}
|
||||||
|
@ -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"),
|
||||||
|
@ -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"),
|
||||||
|
@ -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"),
|
||||||
|
@ -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"),
|
||||||
|
@ -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"),
|
||||||
|
@ -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"),
|
||||||
|
Loading…
Reference in New Issue
Block a user