Compatibilité IE6
This commit is contained in:
parent
cf50bc0374
commit
f01ba975c7
@ -1,4 +1,4 @@
|
|||||||
<div <?php if ($this->preferences) { ?>id="accordion" <?php } else {?> id="rappel" <?php }?>>
|
<div id="panel">
|
||||||
<?=$this->action('criteres', 'index');?>
|
<?=$this->action('criteres', 'index');?>
|
||||||
</div>
|
</div>
|
||||||
<div id="tabs">
|
<div id="tabs">
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1,12 +1,12 @@
|
|||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
|
|
||||||
$( "#tabs" ).tabs({
|
$( "#tabs" ).tabs({
|
||||||
cookie: { expires: 1 },
|
cookie: { expires: 1 }
|
||||||
});
|
});
|
||||||
|
|
||||||
$("li.tooltip").each(function(){
|
$("li.tooltip").each(function(){
|
||||||
var title = $('a', this).attr('title');
|
var title = $('a', this).attr('title');
|
||||||
var width = $(this).attr('wdth');
|
var width = $(this).attr('width');
|
||||||
$(this).qtip({
|
$(this).qtip({
|
||||||
solo:true,
|
solo:true,
|
||||||
content: title,
|
content: title,
|
||||||
@ -16,7 +16,7 @@ $(document).ready(function(){
|
|||||||
},
|
},
|
||||||
position: {
|
position: {
|
||||||
my: 'top right',
|
my: 'top right',
|
||||||
at: 'bottom right',
|
at: 'bottom right'
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@ -39,7 +39,7 @@ $(document).ready(function(){
|
|||||||
stop: function( event, ui ) {
|
stop: function( event, ui ) {
|
||||||
var name = $(this).attr('input');
|
var name = $(this).attr('input');
|
||||||
set(name, ui.values[ 0 ] + "," + ui.values[ 1 ]);
|
set(name, ui.values[ 0 ] + "," + ui.values[ 1 ]);
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
$("input.datepicker").datepicker({ dateFormat: 'dd/mm/yy' } );
|
$("input.datepicker").datepicker({ dateFormat: 'dd/mm/yy' } );
|
||||||
@ -103,7 +103,7 @@ $(document).ready(function(){
|
|||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
set($(this).attr('name'), $(this).val());
|
set($(this).attr('name'), $(this).val());
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#tabs').delegate('a.interval', 'click', function(e){
|
$('#tabs').delegate('a.interval', 'click', function(e){
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
var key = $(this).attr('id');
|
var key = $(this).attr('id');
|
||||||
@ -111,7 +111,7 @@ $(document).ready(function(){
|
|||||||
set(key, values);
|
set(key, values);
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#tabs').delegate('a.arborescence', 'click', function(e) {
|
$('#tabs').delegate('a.arborescence', 'click', function(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
var title = $(this).attr('title');
|
var title = $(this).attr('title');
|
||||||
@ -143,7 +143,7 @@ $(document).ready(function(){
|
|||||||
$('<div id="dialogtree"></div>').dialog(dialogOpts);
|
$('<div id="dialogtree"></div>').dialog(dialogOpts);
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
function set(key, value)
|
function set(key, value)
|
||||||
|
@ -26,6 +26,6 @@ $(document).ready(function(){
|
|||||||
$('<div id="dialogsaveciblage"></div>').dialog(dialogOpts);
|
$('<div id="dialogsaveciblage"></div>').dialog(dialogOpts);
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -213,22 +213,21 @@ h3 {
|
|||||||
width:700px;
|
width:700px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#accordion {
|
#panel {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
float:right;
|
float:right;
|
||||||
width:280px;
|
width:280px;
|
||||||
margin:2px;
|
margin:2px 0;
|
||||||
padding:2px;
|
padding:2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#accordion {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
#rappel {
|
#rappel {
|
||||||
background: #ffffff;
|
|
||||||
color: #000000;
|
|
||||||
float:right;
|
|
||||||
width:280px;
|
|
||||||
margin:2px;
|
|
||||||
padding:2px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui-accordion .ui-accordion-content {
|
.ui-accordion .ui-accordion-content {
|
||||||
|
Loading…
Reference in New Issue
Block a user