Commit 74cd5041 authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Label private classes with "Private" in header.

parent 2e41ca02
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -11,6 +11,9 @@ Ext.define('Docs.view.cls.Header', {

    tpl: Ext.create('Ext.XTemplate',
        '<h1 class="{[this.getClass(values)]}">',
            '<tpl if="private">',
                '<span class="private">Private</span>',
            '</tpl>',
            '<a href="source/{href}" target="_blank">{name}</a>',
            '<tpl if="xtypes.length &gt; 0">',
                '<span>xtype: {[values.xtypes.join(", ")]}</span>',
+6 −1
Original line number Diff line number Diff line
@@ -212,7 +212,12 @@ a:hover {
      color: #929292;
      letter-spacing: 0;
      margin-left: 10px;
      font-size: 0.6em; } }
      font-size: 0.6em; }
    span.private {
      float: right;
      font-weight: bold;
      color: #e7ba27;
      letter-spacing: 0px; } }

  h1.class {
    a {