Fixed incorrect casing.

This commit is contained in:
Sipke Schoorstra
2015-03-12 00:28:41 +01:00
parent f02e147eaf
commit 5a5318bc09
3 changed files with 4 additions and 4 deletions

View File

@@ -23,6 +23,6 @@
}
};
LayoutEditor.DecodeLayoutGraph = decodeGraph;
LayoutEditor.decodeLayoutGraph = decodeGraph;
})(LayoutEditor || (LayoutEditor = {}));

View File

@@ -40,7 +40,7 @@
var editorConfig = @Html.Raw(Model.ConfigurationData);
var editorCanvasData = @Html.Raw(Model.Data);
LayoutEditor.DecodeLayoutGraph(editorCanvasData);
LayoutEditor.decodeLayoutGraph(editorCanvasData);
window.layoutEditor = new LayoutEditor.Editor(editorConfig, editorCanvasData);
})(jQuery);
</script>

View File

@@ -45,8 +45,8 @@
elementEditorModel: @Html.Raw(Model.ElementEditorModel.ToJson())
};
LayoutEditor.DecodeLayoutGraph(payload.element);
LayoutEditor.DecodeLayoutGraph(payload.elementEditorModel);
LayoutEditor.decodeLayoutGraph(payload.element);
LayoutEditor.decodeLayoutGraph(payload.elementEditorModel);
window.parent.currentDialog.trigger("command", payload);
});
</script>