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 @body
</div> </div>
</body> </body>
<script>
$(function(){ prettyPrint(); });
</script>
</html> </html>

View File

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