general.js 514 Bytes
//
// Author Igor Amorim - www.igoramorim.com
//
$(function(){
  // Setup drop down menu
  $('.dropdown-toggle').dropdown();
 
  // Fix input element click problem
  $('.dropdown input, .dropdown label').click(function(e) {
    e.stopPropagation();
  });

  $("#search_tokens").tokenInput("/wikilibras/search", {
    crossDomain: false,
    prePopulate: $("#search_tokens").data("pre"),
	hintText: "Procure...",
	noResultsText: "Nehum resultado.",
	searchingText: "Procurando ...",
    theme: "facebook"
  });
});