// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

Sociabilis = {
  /* do this while we're waiting for ajax responses */
  ajaxing: function(){
    this.innerHTML = '...'; 
    this.onclick = Sociabilis.nothing;
  },

  /* don't do anything. useful for descriptive declarations like $('a').onclick = FacetApp.nothing */
  nothing: function() { 
    return false 
  }
}

