diff options
| author | RblSb <msrblsb@gmail.com> | 2025-02-06 06:41:49 +0300 |
|---|---|---|
| committer | RblSb <msrblsb@gmail.com> | 2025-02-07 01:12:14 +0300 |
| commit | d86f0c30e1726a56e670955c3b995945c1daf834 (patch) | |
| tree | 2cff6b1c76191df76291f93c5a46810f09181727 /src/VideoList.hx | |
| parent | 382f9b2ebedca905028341825350a0fa69d88673 (diff) | |
Fixes pack
- Fix timer seek on server pause with double timer.pause() calls
- Implement multi-caching
- Better uploading progress with XMLHttpRequest
- Better upload/cache error reporting
Diffstat (limited to 'src/VideoList.hx')
| -rw-r--r-- | src/VideoList.hx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/VideoList.hx b/src/VideoList.hx index c5e92c8..eb3e67d 100644 --- a/src/VideoList.hx +++ b/src/VideoList.hx @@ -44,6 +44,10 @@ class VideoList { pos = i; } + public function hasItem(i:Int):Bool { + return items[i] != null; + } + public function exists(f:(item:VideoItem) -> Bool):Bool { return items.exists(f); } |
