svn: /web/doc-editor/trunk/js/ui/component/ VCSLogGrid.js
[email protected] (Yannick Torres)
| Newsgroups | php.doc.web |
|---|---|
| Message-ID | <[email protected]> |
yannick Mon, 22 Mar 2010 21:44:06 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=296643
Log:
switch buttons order
Changed paths:
U web/doc-editor/trunk/js/ui/component/VCSLogGrid.js
Modified: web/doc-editor/trunk/js/ui/component/VCSLogGrid.js
===================================================================
--- web/doc-editor/trunk/js/ui/component/VCSLogGrid.js 2010-03-22 21:43:24 UTC (rev 296642)
+++ web/doc-editor/trunk/js/ui/component/VCSLogGrid.js 2010-03-22 21:44:06 UTC (rev 296643)
@@ -109,6 +109,7 @@
loadMask : true,
autoScroll : true,
bodyBorder : false,
+ border : false,
autoExpandColumn : 'content',
initComponent : function()
@@ -194,6 +195,15 @@
deferEmptyText: false
}),
tbar : [{
+ scope : this,
+ id : this.prefix + '-PANEL-btn-refreshlog-' + this.fid,
+ tooltip : _('<b>Load/Refresh</b> revisions'),
+ iconCls : 'iconRefresh',
+ handler : function()
+ {
+ this.store.reload();
+ }
+ }, {
scope : this,
id : this.prefix + '-PANEL-btn-log-' + this.fid,
tooltip : _('<b>View</b> the diff'),
@@ -245,15 +255,6 @@
}
});
}
- }, {
- scope : this,
- id : this.prefix + '-PANEL-btn-refreshlog-' + this.fid,
- tooltip : _('<b>Load/Refresh</b> revisions'),
- iconCls : 'iconRefresh',
- handler : function()
- {
- this.store.reload();
- }
}]
});
ui.component.VCSLogGrid.superclass.initComponent.call(this);