ondata / albopop-enhanced

Aggregation, analysis and visualization of Albo POP (http://albopop.it/) feeds with smart search engine and notification system. Demo: http://cerca.albopop.it
MIT License
0 stars 0 forks source link

Campo di ricerca per le tag #9

Closed jenkin closed 8 years ago

jenkin commented 8 years ago

Da aggiungere un campo (oltre search e without) che permetta di definire delle tag su cui filtrare.

jenkin commented 8 years ago

Da aggiungere anche un completamento automatico per le tag esistenti usando typeahead.js, typeahead.js-bootstrap-css e questa opzione per bootstrap-tagsinput.

typeaheadjs: {
 source: function(query,cb) {
  cb(_.filter(tags, function(t) { return t.indexOf(query) > -1; }));
 }
}