svg
This commit is contained in:
@ -11,8 +11,14 @@ body {
|
||||
|
||||
.avatar{
|
||||
border-radius: 100%;
|
||||
width:40px;
|
||||
height:40px;
|
||||
width:35px;
|
||||
height:35px;
|
||||
}
|
||||
|
||||
.bigavatar{
|
||||
border-radius: 100%;
|
||||
width:100px;
|
||||
height:100px;
|
||||
}
|
||||
|
||||
.navbar-brand img {
|
||||
|
@ -2,3 +2,22 @@ function ModalLoad(idmodal,title,path) {
|
||||
$("#"+idmodal+" .modal-header h4").text(title);
|
||||
$("#"+idmodal+" #framemodal").attr("src",path);
|
||||
}
|
||||
|
||||
$(document).ready(function(){
|
||||
|
||||
$("#selectcompany").on("change", function() {
|
||||
url=$(this).data("change");
|
||||
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: url,
|
||||
data: {
|
||||
id: $(this).val()
|
||||
},
|
||||
success: function (result) {
|
||||
location.reload();
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user