partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit 77a5adce609774f37b68b5962885ffd4f8d91862
parent 639167488fe8d108ecfaac8ad47dee14cd934987
Author: Felicitus <felicitus@felicitus.org>
Date:   Thu,  5 Nov 2015 13:06:53 +0100

Fixed icon glyphs for login dialog

Diffstat:
Msrc/PartKeepr/FrontendBundle/Resources/public/js/Components/Auth/LoginDialog.js | 7+++----
1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/PartKeepr/FrontendBundle/Resources/public/js/Components/Auth/LoginDialog.js b/src/PartKeepr/FrontendBundle/Resources/public/js/Components/Auth/LoginDialog.js @@ -51,11 +51,11 @@ Ext.define('PartKeepr.LoginDialog', { items: [ { text: i18n("Connect"), - glyph: 0xf090, + iconCls: "web-icon connect", handler: Ext.bind(this.login, this) },{ text: i18n("Close"), - glyph: 0xf00d, + iconCls: "web-icon cancel", handler: Ext.bind(this.close, this) }] }] @@ -82,4 +82,4 @@ Ext.define('PartKeepr.LoginDialog', { this.fireEvent("login", this.loginField.getValue(), this.passwordField.getValue()); } -});- \ No newline at end of file +});