question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Lack of mobile support

See original GitHub issue

I realize this won’t work for mobile devices as they cannot physically “Drag and drop” content.

I believed a workaround using <input type="file" (change)="dropped($event)"> would be sufficient, however UploadEvent type is not the same as change event type.

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Reactions:1
  • Comments:5 (1 by maintainers)

github_iconTop GitHub Comments

1reaction
moshejscommented, Nov 16, 2018

@moshejs Does your workaround also allow triggering the filepicker dialog by clicking on the drop-zone?

Yes, that’s what allows

1reaction
moshejscommented, Jul 19, 2018

I came up with my own workaround, for now. However, it would be nice to be able to use UploadEvent type

  public dropped(event: any) {
        if (event.type === 'change') {
            for (const file of event.target.files) {
                file.relativePath = file.name;
                fileList.push(file);
            }
        } else {
        ....default dropped code.....
        }
    }
Read more comments on GitHub >

github_iconTop Results From Across the Web

3 Reasons Lacking a Mobile-Friendly Website is Costing You ...
A digital shift of tectonic proportions has happened: mobile-friendly websites are crucial to the success of a business.
Read more >
Lack of mobile support - Brainly.ph
Lack of mobile support - 3242309. ... Lack of mobile support means lack of technology or interaction of friends thru games and chatting....
Read more >
Retailers embracing in-store mobile, but still lack support
Dive Brief: Despite increasing adoption of mobile devices for in-store employees, retailers still face major challenges blocking them from ...
Read more >
Signal issues / no service troubleshooting | T-Mobile Support
Use this easy checklist to get help troubleshooting no signal or "no service" errors.
Read more >
How governments can help mobile phones become a ...
Governments need to step in to ensure mobile services help the world's most vulnerable communities access aid and other essential support.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found