$.get(chrome.extension.getURL('content/html/popup.html'), {}, function(data, status, xhr) { var dom = $.parseHTML(data); var options = { el: dom[0], chrome: true, title: "My modal", buttons: [] }; // the SDK has been loaded, now do something with it! sdk.Compose.registerComposeViewHandler(function (composeView) { // a compose view has come into existence, do something with it! composeView.addButton({ title: "Button", iconUrl: chrome.runtime.getURL('content/images/icon.png'), onClick: function (event) { sdk.Widgets.showModalView(options); } });
}); });To view this discussion on the web visit https://groups.google.com/d/msgid/inboxsdk/222a332f-b8d5-4d41-9299-b60123ccc436%40googlegroups.com.--
You received this message because you are subscribed to the Google Groups "InboxSDK" group.
To unsubscribe from this group and stop receiving emails from it, send an email to inboxsdk+u...@googlegroups.com.