mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-03-05 19:57:44 +01:00
Fix selezione colori #1102
This commit is contained in:
parent
9b22b07dcf
commit
e16af3fce9
@ -825,7 +825,7 @@ if (empty($record['deleted_at'])) {
|
||||
|
||||
<script>
|
||||
$(document).ready( function() {
|
||||
$(".colorpicker").colorpicker().on("changeColor", function() {
|
||||
$(".colorpicker").colorpicker({ format: 'hex' }).on("changeColor", function() {
|
||||
$("#colore_t").parent().find(".square").css("background", $("#colore_t").val());
|
||||
});
|
||||
|
||||
|
@ -74,13 +74,13 @@ if (isset($id_record)) {
|
||||
|
||||
<script>
|
||||
$(document).ready( function() {
|
||||
$('#modals > div .colorpicker').colorpicker().on('changeColor', function() {
|
||||
$('#modals > div .colorpicker').colorpicker({ format: 'hex' }).on('changeColor', function() {
|
||||
$('#modals > div #colore_').parent().find('.square').css('background', $('#modals > div #colore_').val());
|
||||
});
|
||||
|
||||
$('#modals > div #colore_').parent().find('.square').css('background', $('#modals > div #colore_').val());
|
||||
|
||||
$('#modals > div .colorpicker').colorpicker().on('changeColor', function() {
|
||||
$('#modals > div .colorpicker').colorpicker({ format: 'hex' }).on('changeColor', function() {
|
||||
$('#modals > div #colore_').parent().find('.square').css('background', $('#modals > div #colore_').val());
|
||||
});
|
||||
|
||||
|
@ -81,7 +81,7 @@ include_once __DIR__.'/../../core.php';
|
||||
|
||||
<script>
|
||||
$(document).ready( function() {
|
||||
$('.colorpicker').colorpicker().on('changeColor', function() {
|
||||
$('.colorpicker').colorpicker({ format: 'hex' }).on('changeColor', function() {
|
||||
$('#colore').parent().find('.square').css( 'background', $('#colore').val() );
|
||||
});
|
||||
|
||||
|
@ -55,7 +55,7 @@ if (isset($id_record)) {
|
||||
|
||||
<script>
|
||||
$(document).ready( function() {
|
||||
$('.colorpicker').colorpicker().on('changeColor', function() {
|
||||
$('.colorpicker').colorpicker({ format: 'hex' }).on('changeColor', function() {
|
||||
$('#modals > div #colore_').parent().find('.square').css('background', $('#modals > div #colore_').val());
|
||||
});
|
||||
|
||||
|
@ -52,7 +52,7 @@ include_once __DIR__.'/../../core.php';
|
||||
|
||||
<script>
|
||||
$(document).ready( function() {
|
||||
$('.colorpicker').colorpicker().on('changeColor', function() {
|
||||
$('.colorpicker').colorpicker({ format: 'hex' }).on('changeColor', function() {
|
||||
$('#colore').parent().find('.square').css( 'background', $('#colore').val() );
|
||||
});
|
||||
|
||||
|
@ -43,7 +43,7 @@ include_once __DIR__.'/../../core.php';
|
||||
|
||||
<script>
|
||||
$(document).ready( function() {
|
||||
$('.colorpicker').colorpicker().on('changeColor', function() {
|
||||
$('.colorpicker').colorpicker({ format: 'hex' }).on('changeColor', function() {
|
||||
$('#colore').parent().find('.square').css( 'background', $('#colore').val() );
|
||||
});
|
||||
$('#colore').parent().find('.square').css( 'background', $('#colore').val() );
|
||||
|
@ -69,7 +69,7 @@ if (!empty($righe)) {
|
||||
|
||||
<script>
|
||||
$(document).ready( function() {
|
||||
$('.colorpicker').colorpicker().on('changeColor', function() {
|
||||
$('.colorpicker').colorpicker({ format: 'hex' }).on('changeColor', function() {
|
||||
$('#colore').parent().find('.square').css( 'background', $('#colore').val() );
|
||||
});
|
||||
$('#colore').parent().find('.square').css( 'background', $('#colore').val() );
|
||||
|
@ -47,7 +47,7 @@ include_once __DIR__.'/../../core.php';
|
||||
|
||||
<script>
|
||||
$(document).ready( function() {
|
||||
$('.colorpicker').colorpicker().on('changeColor', function() {
|
||||
$('.colorpicker').colorpicker({ format: 'hex' }).on('changeColor', function() {
|
||||
$('#colore').parent().find('.square').css( 'background', $('#colore').val() );
|
||||
});
|
||||
$('#colore').parent().find('.square').css( 'background', $('#colore').val() );
|
||||
|
@ -73,7 +73,7 @@ if (!empty($righe)) {
|
||||
|
||||
<script>
|
||||
$(document).ready( function() {
|
||||
$('.colorpicker').colorpicker().on('changeColor', function() {
|
||||
$('.colorpicker').colorpicker({ format: 'hex' }).on('changeColor', function() {
|
||||
$('#colore').parent().find('.square').css( 'background', $('#colore').val() );
|
||||
});
|
||||
$('#colore').parent().find('.square').css( 'background', $('#colore').val() );
|
||||
|
@ -47,7 +47,7 @@ include_once __DIR__.'/../../core.php';
|
||||
|
||||
<script>
|
||||
$(document).ready( function() {
|
||||
$('.colorpicker').colorpicker().on('changeColor', function() {
|
||||
$('.colorpicker').colorpicker({ format: 'hex' }).on('changeColor', function() {
|
||||
$('#modals > div #colore_').parent().find('.square').css( 'background', $('#modals > div #colore_').val() );
|
||||
});
|
||||
|
||||
|
@ -111,7 +111,7 @@ if ($record['can_delete']) {
|
||||
?>
|
||||
<script>
|
||||
$(document).ready( function() {
|
||||
$('.colorpicker').colorpicker().on('changeColor', function() {
|
||||
$('.colorpicker').colorpicker({ format: 'hex' }).on('changeColor', function() {
|
||||
$('#colore').parent().find('.square').css( 'background', $('#colore').val() );
|
||||
});
|
||||
$('#colore').parent().find('.square').css( 'background', $('#colore').val() );
|
||||
|
@ -60,7 +60,7 @@ include_once __DIR__.'/../../core.php';
|
||||
|
||||
<script>
|
||||
$(document).ready( function() {
|
||||
$('.colorpicker').colorpicker().on('changeColor', function() {
|
||||
$('.colorpicker').colorpicker({ format: 'hex' }).on('changeColor', function() {
|
||||
$('#modals > div #colore_').parent().find('.square').css( 'background', $('#modals > div #colore_').val() );
|
||||
});
|
||||
|
||||
|
@ -86,7 +86,7 @@ if (!empty($record['can_delete'])) {
|
||||
|
||||
<script>
|
||||
$(document).ready( function() {
|
||||
$('.colorpicker').colorpicker().on('changeColor', function() {
|
||||
$('.colorpicker').colorpicker({ format: 'hex' }).on('changeColor', function() {
|
||||
$('#colore').parent().find('.square').css( 'background', $('#colore').val() );
|
||||
});
|
||||
$('#colore').parent().find('.square').css( 'background', $('#colore').val() );
|
||||
|
@ -7,7 +7,7 @@
|
||||
"autonumeric": "^4.6.0",
|
||||
"autosize": "^3.0.21",
|
||||
"bootstrap": "^3.4.1",
|
||||
"bootstrap-colorpicker": "2.5.1",
|
||||
"bootstrap-colorpicker": "^2.5.3",
|
||||
"bootstrap-daterangepicker": "^2.1.25",
|
||||
"bootstrap-maxlength": "^1.10.1",
|
||||
"chart.js": "^3.8.0",
|
||||
|
Loading…
x
Reference in New Issue
Block a user