ccsqd
This commit is contained in:
parent
f196d93ddc
commit
fbc2f29893
@ -16,10 +16,22 @@
|
|||||||
@section('page-scripts')
|
@section('page-scripts')
|
||||||
<script>
|
<script>
|
||||||
var redirect;
|
var redirect;
|
||||||
document.getElementById('imgRef').addEventListener("click", function() {
|
|
||||||
|
function absorbEvent_(event) {
|
||||||
|
var e = event || window.event;
|
||||||
|
e.preventDefault && e.preventDefault();
|
||||||
|
e.stopPropagation && e.stopPropagation();
|
||||||
|
e.cancelBubble = true;
|
||||||
|
e.returnValue = false;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
document.getElementById('imgRef').addEventListener("click", function(event) {
|
||||||
|
absorbEvent_(event);
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
document.getElementById('imgRef').addEventListener("mousedown", function() {
|
document.getElementById('imgRef').addEventListener("mousedown", function(event) {
|
||||||
|
absorbEvent_(event);
|
||||||
redirect = setTimeout(function(){location.href="{{URL::to('choisirref')}}"}, 3000);
|
redirect = setTimeout(function(){location.href="{{URL::to('choisirref')}}"}, 3000);
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
@ -30,7 +42,8 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
document.getElementById('imgRef').addEventListener("touchstart", function() {
|
document.getElementById('imgRef').addEventListener("touchstart", function(event) {
|
||||||
|
absorbEvent_(event);
|
||||||
redirect = setTimeout(function(){location.href="{{URL::to('choisirref')}}"}, 3000);
|
redirect = setTimeout(function(){location.href="{{URL::to('choisirref')}}"}, 3000);
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user