This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getData(callback){ | |
// Cache & Ajax logix | |
callback([{id:1, name:'foo', text: 'huhu'}, {id:1, name:'baar', text: 'Lorem ipsum dolor sit amet.'}]); | |
} | |
$seleceted = $(".selected"); | |
$('.input').typeahead({ | |
minLength: 0, | |
render: function (items) { | |
console.log(items); | |
// Ignore selected values |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@semantic-ui-path: "../../../vendor/semantic/ui/build/less/"; | |
/* Collections */ | |
@import "@{semantic-ui-path}collections/breadcrumb.less"; | |
@import "@{semantic-ui-path}collections/form.less"; | |
@import "@{semantic-ui-path}collections/grid.less"; | |
@import "@{semantic-ui-path}collections/menu.less"; | |
@import "@{semantic-ui-path}collections/message.less"; | |
@import "@{semantic-ui-path}collections/table.less"; |