Newer
Older
gitbucket_jkp / src / main / webapp / assets / common / js / gitbucket.js
@takezoe takezoe on 4 Jul 2013 174 bytes Disable GET Ajax cache.
$(function(){
  $.ajaxSetup({
    cache: false
  });

  $('#repository-url').click(function(){
    this.select(0, this.value.length); 
  });

  prettyPrint();
});