in themes/kube/static/js/kube.js [2044:2058]
buildContent: function()
{
$.ajax({
url: this.opts.url + '?' + new Date().getTime(),
cache: false,
type: 'post',
data: this.getData(),
success: $.proxy(function(data)
{
this.$body.html(data);
this.open();
}, this)
});
},