remove debugging

This commit is contained in:
Howard Stearns 2017-04-28 07:15:22 -07:00
parent aed762e986
commit 0ad8f4d985
2 changed files with 3 additions and 4 deletions

View file

@ -126,7 +126,7 @@ Column {
}
function makeFilteredStoryProcessor() { // answer a function(storyData) that adds it to suggestions if it matches
var words = filter.toUpperCase().split(/\s+/).filter(identity);
function suggestable(story) { // fixme add to makeFilteredStoryProcessor
function suggestable(story) {
if (story.action === 'snapshot') {
return true;
}
@ -177,7 +177,6 @@ Column {
}
ListView {
id: scroll;
//fixme clip: true;
model: suggestions;
orientation: ListView.Horizontal;
highlightMoveDuration: -1;

View file

@ -262,8 +262,8 @@ StackView {
cardHeight: 163 + (2 * 4);
metaverseServerUrl: addressBarDialog.metaverseServerUrl;
labelText: 'HAPPENING NOW';
actions: 'concurrency,snapshot'; // uncomment this line instead of next to produce fake announcement data for testing.
//actions: 'announcement';
//actions: 'concurrency,snapshot'; // uncomment this line instead of next to produce fake announcement data for testing.
actions: 'announcement';
filter: addressLine.text;
goFunction: goCard;
}