for #11 and #12: Show/Hide container UI & implementation (#24)

* Adding in hide/show API for containers
* fix #12: [un]hide icons in the pop-up UI
This commit is contained in:
luke crouch
2016-12-29 08:37:49 -06:00
committed by Jonathan Kingston
parent 38a4eb68ec
commit 3c06f76ab3
7 changed files with 1455 additions and 10 deletions
File diff suppressed because it is too large Load Diff
+28 -2
View File
@@ -25,8 +25,34 @@
"parameters": [
{
"type": "string",
"name": "cookieStoreId",
"description": "The ID of the contextual identity cookie store. "
"name": "cookiestoreid",
"description": "the id of the contextual identity cookie store. "
}
]
},
{
"name": "hide",
"type": "function",
"description": "hides all of a contextual identity.",
"async": true,
"parameters": [
{
"type": "string",
"name": "cookiestoreid",
"description": "the id of the contextual identity cookie store. "
}
]
},
{
"name": "show",
"type": "function",
"description": "unhides all of a contextual identity.",
"async": true,
"parameters": [
{
"type": "string",
"name": "cookiestoreid",
"description": "the id of the contextual identity cookie store. "
}
]
},