| author | Chris Kyrouac | 2012-09-06 17:19:38 (EDT) |
|---|---|---|
| committer | Chris Kyrouac | 2012-09-06 17:19:38 (EDT) |
| commit | c38675951cf60e7e7656b194456c609915e62e30 (patch) (side-by-side diff) | |
| tree | 181ed77321b60d2211a2fe9aeb6aa02e8da24891 | |
| parent | 3a3a0940a3fb25fb040e9b44e6c70e284497349f (diff) | |
| download | org.eclipse.lyo.server-c38675951cf60e7e7656b194456c609915e62e30.zip org.eclipse.lyo.server-c38675951cf60e7e7656b194456c609915e62e30.tar.gz org.eclipse.lyo.server-c38675951cf60e7e7656b194456c609915e62e30.tar.bz2 | |
Bug 389001 The <img> tags in manage.js need alt attributes for accessibilityrefs/changes/51/7651/1
Change-Id: I21b1fb8b4aed81a5e1db627fa55ecf23e0210a85
| -rw-r--r-- | org.eclipse.lyo.server.oauth.webapp/src/main/webapp/oauth/scripts/manage.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.lyo.server.oauth.webapp/src/main/webapp/oauth/scripts/manage.js b/org.eclipse.lyo.server.oauth.webapp/src/main/webapp/oauth/scripts/manage.js index 0ad3af6..81e6848 100644 --- a/org.eclipse.lyo.server.oauth.webapp/src/main/webapp/oauth/scripts/manage.js +++ b/org.eclipse.lyo.server.oauth.webapp/src/main/webapp/oauth/scripts/manage.js @@ -144,7 +144,8 @@ require([ "dojo/dom", "dojo/dom-construct", "dojo/dom-style", "dojo/on", var img = domConstruct.create('img', { 'src' : action.icon, 'title' : action.name, - 'class' : 'action' + 'class' : 'action', + 'alt': action.name }, node); on(img, 'click', function() { action.callback(consumer); |

