Merge branch 'hideshowapi' of github.com:jonathanKingston/testpilot-containers into hideshowapi

This commit is contained in:
Jonathan Kingston 2016-12-24 03:07:30 +00:00
commit 4a04aa5f2e

View file

@ -57,3 +57,12 @@ document.querySelector('#edit-containers-link').addEventListener('click', ()=> {
window.close();
});
});
function hideContainer(containerId) {
browser.contextualIdentities.hide(containerId);
}
function showContainer(containerId) {
browser.contextualIdentities.show(containerId);
}