mirror of
https://github.com/nasa/openmct.git
synced 2025-06-19 23:53:49 +00:00
[Pages] Test controller
Test controller for WTD-1145.
This commit is contained in:
19
platform/features/pages/src/EmbeddedPageController.js
Normal file
19
platform/features/pages/src/EmbeddedPageController.js
Normal file
@ -0,0 +1,19 @@
|
||||
/*global define*/
|
||||
|
||||
define(
|
||||
[],
|
||||
function () {
|
||||
"use strict";
|
||||
|
||||
function EmbeddedPageController($sce) {
|
||||
return {
|
||||
trust: function (url) {
|
||||
return $sce.trustAsResourceUrl(url);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
return EmbeddedPageController;
|
||||
}
|
||||
|
||||
);
|
Reference in New Issue
Block a user