| Summary: | [user] Add iframe extension point to user profile | ||
|---|---|---|---|
| Product: | [ECD] Orion | Reporter: | Malgorzata Janczarska <malgorzata.tomczyk> |
| Component: | Client | Assignee: | Malgorzata Janczarska <malgorzata.tomczyk> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | ||
| Version: | unspecified | ||
| Target Milestone: | 0.3 | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
| Bug Depends on: | |||
| Bug Blocks: | 336212 | ||
|
Description
Malgorzata Janczarska
The extention is done, is can be mixed with the "regular" extentions for the profile.
window.onload = function() {
var provider = new eclipse.PluginProvider();
provider.registerServiceProvider("profilePlugin", {
info : function() {
return {
name : "Manage OpenIds",
};
},
getDivContent: function() {
var content = {"sections" : [
{"id": "openids", "name": "Manage External Accounts", "type": "iframe", "data" : {"src": "/openids/manageOpenids.html", "style" : "border: 0px; width: 500px"}}
]
};
return content;
}
});
provider.connect();
};
|