Commit 33b53135 authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Eliminate tabOverflow ID.

Use class name instead.
parent 0c4fe37f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ Ext.define('Docs.view.Tabs', {
                '</div>',
            '</tpl>',
            '<div style="float: left; width: 8px">&nbsp;</div>',
            '<div id="tabOverflow"></div>'
            '<div class="tab-overflow"></div>'
        );

        this.html = this.tpl.applyTemplate(this.staticTabs);
@@ -438,7 +438,7 @@ Ext.define('Docs.view.Tabs', {

        this.overflowButton = Ext.create('Ext.button.Button', {
            baseCls: "",
            renderTo: 'tabOverflow',
            renderTo: this.getEl().down('.tab-overflow'),
            menu: {
                id: 'tabOverflowMenu',
                plain: true,
+1 −1
Original line number Diff line number Diff line
@@ -120,7 +120,7 @@
    background: url(../images/tabs.png) no-repeat 2px -72px;
    padding-left: 16px; padding-right: 12px; }

  #tabOverflow {
  .tab-overflow {
    position: absolute;
    right: 5px;
    top: 8px;