Commit f797ab58 authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Unify indentation.

- No tabs, spaces.
- In scss file using the same style of brace-placement.
parent 60462f07
Loading
Loading
Loading
Loading
+11 −11
Original line number Diff line number Diff line
@@ -132,7 +132,7 @@ Ext.define('Docs.controller.Classes', {
            }

            var prevCls = historyStore.find('cls', cls.name);
			if (prevCls == -1) {
            if (prevCls === -1) {
                historyStore.add({cls: cls.name});
                historyStore.sync();
            }
+12 −13
Original line number Diff line number Diff line
/**
 * History button with fly-out menu of history entries.
 */
Ext.define('Docs.view.clsTree.History', {
    	
	extend: 'Ext.Component',
	alias: 'widget.docshistorybutton',

@@ -7,12 +9,10 @@ Ext.define('Docs.view.clsTree.History', {
	html: '<span></span>History',

	afterRender: function() {
	    
        this.callParent(arguments);

        this.getEl().on({
            mouseover: function() {
                
                if (!this.hoverMenu) {
                    this.renderMenu();
                }
@@ -27,7 +27,6 @@ Ext.define('Docs.view.clsTree.History', {
	},

    renderMenu: function() {
        
        this.hoverMenu = Ext.create('Docs.view.clsTree.HistoryItems', {
            store: Docs.App.getStore('History')
        });
+5 −3
Original line number Diff line number Diff line

/**
 * Menu of history items.
 */
Ext.define('Docs.view.clsTree.HistoryItems', {
    extend: 'Ext.view.View',

+21 −22
Original line number Diff line number Diff line
@@ -644,22 +644,21 @@ a:hover {
    display: block;
    .item {
      position: relative;
	    padding: 2px 30px 2px 0;
	}
      padding: 2px 30px 2px 0; }
    a {
      display: inline;
		padding: 0;
	}
      padding: 0; }
    a.close {
	  position: absolute; right: 0;
	}
}
      position: absolute;
      right: 0; } }

#historyBtn {
  padding-left: 22px;
}
#historyBtn span {
	display: block; width: 17px; height: 17px; 
	position: absolute; left: 0; top: -2px;
	background: url(../images/favorite.png) no-repeat -36px 0;
}
 No newline at end of file
  span {
    display: block;
    width: 17px;
    height: 17px;
    position: absolute;
    left: 0;
    top: -2px;
    background: url(../images/favorite.png) no-repeat -36px 0; } }
+1 −1

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+2 −2

File changed.

Contains only whitespace changes.

Loading