/**
* @class Ext.view.BoundListKeyNav
* @extends Ext.util.KeyNav
* A specialized {@link Ext.util.KeyNav} implementation for navigating a {@link Ext.view.BoundList} using
@@ -9,7 +26,7 @@ Ext.define('Ext.view.BoundListKeyNav', {
extend: 'Ext.util.KeyNav',
requires: 'Ext.view.BoundList',
- /**
+ /**
* @cfg {Ext.view.BoundList} boundList
* @required
* The {@link Ext.view.BoundList} instance for which key navigation will be managed. This is required.
@@ -64,7 +81,7 @@ Ext.define('Ext.view.BoundListKeyNav', {
}
},
- /**
+ /**
* Highlights the item at the given index.
* @param {Number} index
*/
@@ -78,7 +95,7 @@ Ext.define('Ext.view.BoundListKeyNav', {
}
},
- /**
+ /**
* Triggers selection of the currently highlighted item according to the behavior of
* the configured SelectionModel.
*/
@@ -92,4 +109,6 @@ Ext.define('Ext.view.BoundListKeyNav', {
}
}
-});