[search] Fix activation of results from custom renderers
The previous commit broke activation when selecting an actor from a custom renderer. Fix this by explicitly defining a method activateSelected on the search renderer.
This commit is contained in:
@ -80,6 +80,13 @@ SearchResultDisplay.prototype = {
|
||||
*/
|
||||
selectIndex: function() {
|
||||
throw new Error("not implemented");
|
||||
},
|
||||
|
||||
/**
|
||||
* Activate the currently selected search result.
|
||||
*/
|
||||
activateSelected: function() {
|
||||
throw new Error("not implemented");
|
||||
}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user