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

Trim trailing whitespace.

And add some missing semicolons.
parent 85839d9b
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -10,7 +10,6 @@ Ext.define('Docs.controller.Classes', {
    ],

    init: function() {
        
        Ext.getBody().addListener('click', function(cmp, el) {
            this.loadClass(el.rel);
        }, this, {
@@ -104,7 +103,6 @@ Ext.define('Docs.controller.Classes', {
    },

    showClass: function(cls, anchor) {
        
        if (this.currentCls != cls) {
            var container = Ext.getCmp('container'),
                showClass = container.down('showclass'),
+2 −4
Original line number Diff line number Diff line
@@ -8,7 +8,6 @@ Ext.define('Docs.controller.Search', {
    stores: ['Search'],

    init: function() {

        this.control({
            '#quick-search': {
                itemclick: function(panel, item) {
@@ -17,7 +16,6 @@ Ext.define('Docs.controller.Search', {
            },
            '#search-field': {
                keyup: function(el, ev) {

                    var panel = Ext.getCmp('quick-search');

                    if (ev.keyCode == 27 || el.value == '') {
@@ -54,7 +52,7 @@ Ext.define('Docs.controller.Search', {
                        // panel.handleClick();
                    }
                    else {
                        Docs.App.getController('Search').search(el.value)
                        Docs.App.getController('Search').search(el.value);
                    }
                }
            }
@@ -72,7 +70,7 @@ Ext.define('Docs.controller.Search', {

    search: function(term) {
        Docs.App.getStore('Search').loadData(this.filterMembers(term), false);
        Ext.getCmp('quick-search').alignTo('search-field', 'bl', [-23, 0])
        Ext.getCmp('quick-search').alignTo('search-field', 'bl', [-23, 0]);
    },

    filterMembers: function(text, n) {
+3 −3
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ Ext.define('Docs.view.class.HoverMenuButton', {
        }));
        this.menu.addListener('click', function() {
            this.menu.setStyle({display: "none"});
        }, this)
        }, this);
        this.menus.push(this.menu);
    },

+1 −1

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+4 −4

File changed.

Contains only whitespace changes.

+8 −8

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

Loading