mirror of
https://github.com/nasa/openmct.git
synced 2024-12-20 05:37:53 +00:00
012fad6984
Valid URL input for Pages, WTD-1145.
35 lines
971 B
JSON
35 lines
971 B
JSON
{
|
|
"extensions": {
|
|
"types": [
|
|
{
|
|
"key": "example.page",
|
|
"name": "Page",
|
|
"features": [ "creation" ],
|
|
"properties": [
|
|
{
|
|
"key": "url",
|
|
"name": "URL",
|
|
"control": "textfield",
|
|
"pattern": "^(ftp|https?)\\:\\/\\/\\w+(\\.\\w+)*(\\:\\d+)?(\\/\\S*)*$",
|
|
"required": true
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"views": [
|
|
{
|
|
"templateUrl": "iframe.html",
|
|
"name": "Page",
|
|
"type": "example.page",
|
|
"key": "example.page"
|
|
}
|
|
],
|
|
"controllers": [
|
|
{
|
|
"key": "IFrameController",
|
|
"implementation": "IFrameController.js",
|
|
"depends": ["$sce"]
|
|
}
|
|
]
|
|
}
|
|
} |