mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 06:03:08 +00:00
0201a4bcf8
GitHub-12 Added CSS class "bubble-container" to BUBBLE_TEMPLATE; bubble-container utilizes CSS "pointer-events: none"; Changed INFO_HOVER_DELAY constant from 500ms to 2000ms;
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"extensions": {
|
|
"templates": [
|
|
{
|
|
"key": "info-table",
|
|
"templateUrl": "info-table.html"
|
|
},
|
|
{
|
|
"key": "info-bubble",
|
|
"templateUrl": "info-bubble.html"
|
|
}
|
|
],
|
|
"containers": [
|
|
{
|
|
"key": "bubble",
|
|
"templateUrl": "bubble.html",
|
|
"attributes": [ "bubbleTitle", "bubbleLayout" ],
|
|
"alias": "bubble"
|
|
}
|
|
],
|
|
"gestures": [
|
|
{
|
|
"key": "info",
|
|
"implementation": "gestures/InfoGesture.js",
|
|
"depends": [
|
|
"$timeout",
|
|
"infoService",
|
|
"INFO_HOVER_DELAY"
|
|
]
|
|
}
|
|
],
|
|
"services": [
|
|
{
|
|
"key": "infoService",
|
|
"implementation": "services/InfoService.js",
|
|
"depends": [
|
|
"$compile",
|
|
"$document",
|
|
"$window",
|
|
"$rootScope"
|
|
]
|
|
}
|
|
],
|
|
"constants": [
|
|
{
|
|
"key": "INFO_HOVER_DELAY",
|
|
"value": 2000
|
|
}
|
|
]
|
|
}
|
|
} |