Disable GET Ajax cache.

This commit is contained in:
takezoe
2013-07-05 02:35:23 +09:00
parent c53f3843b8
commit 9bc8db5a15
2 changed files with 6 additions and 3 deletions

View File

@@ -57,7 +57,4 @@
@body
</div>
</body>
<script>
$(function(){ prettyPrint(); });
</script>
</html>

View File

@@ -1,5 +1,11 @@
$(function(){
$.ajaxSetup({
cache: false
});
$('#repository-url').click(function(){
this.select(0, this.value.length);
});
prettyPrint();
});