Blame view
sources/apps/tattoo/js/tattoo.js
262 Bytes
|
42e4f8d60
|
1 2 3 4 5 6 7 8 |
$(document).ready(function() {
$.ajax({
url: OC.filePath('tattoo', 'ajax', 'bg.php'),
success: function(response){
$('#content-wrapper').prepend('<img alt="background" src="'+OC.filePath('tattoo', 'img', response.data)+'" id="tattoobg"/>');
}
});
});
|