partkeepr

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

commit 51086ff46b9f381ae5721a8d78641325d540c64f
parent 65a0b7291b3d5fb86f1e8f2ff97ae71b5676ebb3
Author: Felicitus <felicitus@felicitus.org>
Date:   Thu, 21 May 2015 21:53:21 +0200

Added PartIKeepr logo to the new frontend, changed some icons to font glyphs

Diffstat:
Asrc/PartKeepr/FrontendBundle/Resources/public/images/partkeepr-logo.png | 0
Msrc/PartKeepr/FrontendBundle/Resources/public/js/Components/Grid/GridMenuPlugin.js | 4++--
Msrc/PartKeepr/FrontendBundle/Resources/public/js/Components/MenuBar.js | 4++--
Msrc/PartKeepr/FrontendBundle/Resources/public/js/Components/Part/Editor/PartEditorWindow.js | 4++--
Msrc/PartKeepr/FrontendBundle/Resources/public/js/Components/Statusbar.js | 2+-
5 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/PartKeepr/FrontendBundle/Resources/public/images/partkeepr-logo.png b/src/PartKeepr/FrontendBundle/Resources/public/images/partkeepr-logo.png Binary files differ. diff --git a/src/PartKeepr/FrontendBundle/Resources/public/js/Components/Grid/GridMenuPlugin.js b/src/PartKeepr/FrontendBundle/Resources/public/js/Components/Grid/GridMenuPlugin.js @@ -21,7 +21,7 @@ Ext.define("PartKeepr.GridMenuPlugin", { renderTo: Ext.getBody(), items: [{ text: i18n("Export"), - icon: 'resources/fugue-icons/icons/application-export.png', + glyph: 0xf152, menu: [{ icon: 'resources/mimetypes/csv.png', text: 'Export as semicolon-delimited CSV (.csv)', @@ -44,7 +44,7 @@ Ext.define("PartKeepr.GridMenuPlugin", { scope: this }] },{ - icon: 'resources/fugue-icons/icons/printer.png', + glypt: 0xf02f, text: i18n('Print ...'), handler: this.exportPrint, scope: this diff --git a/src/PartKeepr/FrontendBundle/Resources/public/js/Components/MenuBar.js b/src/PartKeepr/FrontendBundle/Resources/public/js/Components/MenuBar.js @@ -76,7 +76,7 @@ Ext.define('PartKeepr.MenuBar', { icon: 'resources/fugue-icons/icons/notebook.png' },{ text: i18n("Print and Labeling"), - icon: 'resources/fugue-icons/icons/printer.png', + glyph: 0xf02f, menu: [ { text: i18n("Storage Locations"), @@ -123,7 +123,7 @@ Ext.define('PartKeepr.MenuBar', { }, { xtype: 'tbtext', - text: '<img style="float: left;" src="resources/images/partkeepr-logo.png"/>' + text: '<img style="float: left;" src="bundles/partkeeprfrontend/images/partkeepr-logo.png"/>' }]; diff --git a/src/PartKeepr/FrontendBundle/Resources/public/js/Components/Part/Editor/PartEditorWindow.js b/src/PartKeepr/FrontendBundle/Resources/public/js/Components/Part/Editor/PartEditorWindow.js @@ -70,13 +70,13 @@ Ext.define('PartKeepr.PartEditorWindow', { this.saveAndPrintButton = Ext.create("Ext.button.Button", { text: this.saveAndPrintText, - icon: 'resources/fugue-icons/icons/printer.png', + glyph: 0xf02f, handler: Ext.bind(this.onItemSaveAndPrint, this) }); this.printButton = Ext.create("Ext.button.Button", { text: this.printText, - icon: 'resources/fugue-icons/icons/printer.png', + glyph: 0xf02f, handler: Ext.bind(this.onItemPrint, this) }); diff --git a/src/PartKeepr/FrontendBundle/Resources/public/js/Components/Statusbar.js b/src/PartKeepr/FrontendBundle/Resources/public/js/Components/Statusbar.js @@ -14,7 +14,7 @@ Ext.define('PartKeepr.Statusbar', { this.currentUserDisplay.setText(i18n("Not logged in")); this.showMessageLog = Ext.create("Ext.Button",{ - icon: 'resources/silkicons/application_osx_terminal.png', + glyph: 0xf120, cls: 'x-btn-icon', handler: function () { PartKeepr.getApplication().toggleMessageLog();