This has been addressed, but obliquely... what we are trying to accomplish is, in our designer page, have ma container, object point gets, and then include the main body html from a file:
<div class="ma-designer-root" id="6d41eb7c-475e-48df-9132-056d861a617d" style="width: 1366px; height: 768px; position: relative;">
<div ng-init="page = {}"></div>
<ma-watch-list-get ng-model="indicatorWl.watchlist" parameters="indicatorWl.parameters" on-points-change="page.points = $points" id="wl-indicator-id" watch-list-xid="WL_Indicator">
</ma-watch-list-get>
<ma-get-point-value points="page.points"></ma-get-point-value>
//path to hmi.html here:
<ng-include src="'./hmi.html'"></nginclude>
<div>
Our "hmi.html" file is in /overrides/web/modules/mangoUI/web/dev, along with our userModule.js and customCSS.css files.
any thoughts on how to set up ng-include here? (other than route provider...) - or do I need to use a component for this?
-This so we can edit outside of ace editor...
Thanks.