mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-05 05:29:13 +01:00
fix not working quick-add mouseover in jdots
This commit is contained in:
parent
2b1aaa4fba
commit
691caf3954
@ -66,6 +66,42 @@ function hide_pixelegg_header(_toggle, _delay)
|
|||||||
$j(_toggle).parent().addClass("slidedown");
|
$j(_toggle).parent().addClass("slidedown");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Replace all SVG images with inline SVG
|
||||||
|
*/
|
||||||
|
function replace_svg()
|
||||||
|
{
|
||||||
|
$j('img.svg').each(function()
|
||||||
|
{
|
||||||
|
var $img = $j(this);
|
||||||
|
var imgID = $img.attr('id');
|
||||||
|
var imgClass = $img.attr('class');
|
||||||
|
var imgURL = $img.attr('src');
|
||||||
|
|
||||||
|
$j.get(imgURL, function(data)
|
||||||
|
{
|
||||||
|
// Get the SVG tag, ignore the rest
|
||||||
|
var $svg = $j(data).find('svg');
|
||||||
|
|
||||||
|
// Add replaced image's ID to the new SVG
|
||||||
|
if(typeof imgID !== 'undefined') {
|
||||||
|
$svg = $svg.attr('id', imgID);
|
||||||
|
}
|
||||||
|
// Add replaced image's classes to the new SVG
|
||||||
|
if(typeof imgClass !== 'undefined') {
|
||||||
|
$svg = $svg.attr('class', imgClass+' replaced-svg');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove any invalid XML tags as per http://validator.w3.org
|
||||||
|
$svg = $svg.removeAttr('xmlns:a');
|
||||||
|
|
||||||
|
// Replace image with new SVG
|
||||||
|
$img.replaceWith($svg);
|
||||||
|
|
||||||
|
}, 'xml');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
egw_LAB.wait(function() {
|
egw_LAB.wait(function() {
|
||||||
$j(document).ready(function() {
|
$j(document).ready(function() {
|
||||||
|
|
||||||
@ -99,85 +135,48 @@ egw_LAB.wait(function() {
|
|||||||
+ 5;
|
+ 5;
|
||||||
return height;
|
return height;
|
||||||
};
|
};
|
||||||
});
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* replace [+] on mouseover with quick-add selectbox
|
||||||
|
*
|
||||||
// ADD Button
|
* Must run after DOM is ready!
|
||||||
|
|
||||||
function add_quick_Listeners(){
|
|
||||||
|
|
||||||
if(window.addEventListener) {
|
|
||||||
// ADD
|
|
||||||
document.getElementById('quick_add').addEventListener("mouseover",quick_add_func_over,false);
|
|
||||||
document.getElementById('quick_add').addEventListener("mouseout",quick_add_func_out,false);
|
|
||||||
} else if (window.attachEvent){ // Added For Inetenet Explorer versions previous to IE9
|
|
||||||
document.getElementById('quick_add').attachEvent("onmouseover",quick_add_func_over);
|
|
||||||
document.getElementById('quick_add').attachEvent("onmouseout",quick_add_func_out);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Write your functions here
|
|
||||||
|
|
||||||
function quick_add_func_over(){
|
|
||||||
this.style.transition = "0.2s ease-out 0s";
|
|
||||||
this.style.width = "166px";
|
|
||||||
this.style.borderTopLeftRadius = "20px";
|
|
||||||
this.style.backgroundColor = "#0B5FA4";
|
|
||||||
quick_add_selectbox.style.transition = "0.1s linear 0.2s";
|
|
||||||
quick_add_selectbox.style.visibility = "visible";
|
|
||||||
}
|
|
||||||
|
|
||||||
function quick_add_func_out(){
|
|
||||||
this.style.transition = "0.2s ease-out 0s";
|
|
||||||
this.style.width = "16px";
|
|
||||||
this.style.borderTopLeftRadius = "0px";
|
|
||||||
this.style.backgroundColor = "transparent";
|
|
||||||
quick_add_selectbox.style.transition = "0s linear 0s";
|
|
||||||
quick_add_selectbox.style.visibility = "hidden";
|
|
||||||
}
|
|
||||||
|
|
||||||
window.onload = add_quick_Listeners;
|
|
||||||
|
|
||||||
/* #egw_fw_topmenu_info_items {
|
|
||||||
bottom: 0;
|
|
||||||
display: flex;
|
|
||||||
float: right;
|
|
||||||
padding-right: 20px;
|
|
||||||
position: fixed;
|
|
||||||
text-align: right;
|
|
||||||
white-space: nowrap;
|
|
||||||
z-index: 1000;
|
|
||||||
} */
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Replace all SVG images with inline SVG
|
|
||||||
*/
|
*/
|
||||||
$j('img.svg').each(function(){
|
$j('#quick_add').on({
|
||||||
var $img = $j(this);
|
mouseover: function(ev){
|
||||||
var imgID = $img.attr('id');
|
// do NOT react on bubbeling events from contained selectbox
|
||||||
var imgClass = $img.attr('class');
|
if (ev.relatedTarget.id != 'quick_add_selectbox')
|
||||||
var imgURL = $img.attr('src');
|
{
|
||||||
|
$j(this).css({
|
||||||
$j.get(imgURL, function(data) {
|
transition: "0.2s ease-out 0s",
|
||||||
// Get the SVG tag, ignore the rest
|
width: "166px",
|
||||||
var $svg = $j(data).find('svg');
|
'border-top-left-radius': "20px",
|
||||||
|
'background-color': "#0B5FA4"
|
||||||
// Add replaced image's ID to the new SVG
|
});
|
||||||
if(typeof imgID !== 'undefined') {
|
$j('select', this).css({
|
||||||
$svg = $svg.attr('id', imgID);
|
transition: "0.1s linear 0.2s",
|
||||||
}
|
visibility: "visible"
|
||||||
// Add replaced image's classes to the new SVG
|
});
|
||||||
if(typeof imgClass !== 'undefined') {
|
}
|
||||||
$svg = $svg.attr('class', imgClass+' replaced-svg');
|
ev.stopPropagation();
|
||||||
}
|
},
|
||||||
|
mouseout: function(ev){
|
||||||
// Remove any invalid XML tags as per http://validator.w3.org
|
// do NOT react on bubbeling events from contained selectbox
|
||||||
$svg = $svg.removeAttr('xmlns:a');
|
if (ev.relatedTarget.id != 'quick_add_selectbox')
|
||||||
|
{
|
||||||
// Replace image with new SVG
|
$j(this).css({
|
||||||
$img.replaceWith($svg);
|
transition: "0.2s ease-out 0s",
|
||||||
|
width: "16px",
|
||||||
}, 'xml');
|
'border-top-left-radius': "0px",
|
||||||
|
'background-color': "transparent"
|
||||||
|
});
|
||||||
|
$j('select', this).css({
|
||||||
|
transition: "0s linear 0s",
|
||||||
|
visibility: "hidden"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
ev.stopPropagation();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
replace_svg();
|
||||||
});
|
});
|
Loading…
Reference in New Issue
Block a user