mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-09 18:08:49 +00:00
addon repository relocated
This commit is contained in:
parent
2bf19ae652
commit
056921b1e8
124 changed files with 11673 additions and 1 deletions
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
<p>Drag multiple files into input field. (Win7)</p>
|
||||
<p>Result: One file is selected multiple times. Expected: Multiple files are selected.</p>
|
||||
<input type="file" multiple></body>
|
||||
</html>
|
19
js_upload/file-uploader/tests/browser-bugs/safari-bug2.htm
Normal file
19
js_upload/file-uploader/tests/browser-bugs/safari-bug2.htm
Normal file
|
@ -0,0 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<script>
|
||||
window.addEventListener('load', function(){
|
||||
document.addEventListener('dragenter', function(e){
|
||||
e.preventDefault();
|
||||
},false);
|
||||
document.addEventListener('dragover', function(e){
|
||||
e.preventDefault();
|
||||
// e.dataTransfer.effectAllowed is none
|
||||
e.dataTransfer.dropEffect = 'copy';
|
||||
},false);
|
||||
},false);
|
||||
</script>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue