aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/standalone/videos/embed.ts
Commit message (Collapse)AuthorAgeFilesLines
...
* Add ability to set custom field to video formChocobozzz2020-08-211-1/+5
|
* Support plugin hooks in embedChocobozzz2020-08-201-3/+78
|
* Fix invalid refresh token in embedChocobozzz2020-08-141-13/+23
|
* Continue without token on error in embedChocobozzz2020-08-101-7/+9
|
* Correctly error network errors in embedChocobozzz2020-08-071-10/+29
|
* Handle playlist oembedChocobozzz2020-08-071-1/+3
|
* Handle playlist methods in embed apiChocobozzz2020-08-071-24/+30
|
* Handle playlist position in URLChocobozzz2020-08-071-2/+25
|
* Load all playlist elementsChocobozzz2020-08-071-3/+28
|
* Handle start at/stop at in playlist embedChocobozzz2020-08-071-2/+9
|
* Add previous buttonChocobozzz2020-08-071-3/+36
|
* Handle basic playlist in embedChocobozzz2020-08-071-5/+24
|
* Add logic to handle playlist in embedChocobozzz2020-08-071-30/+211
|
* Cleanup tokens logic in embedChocobozzz2020-08-071-10/+16
|
* Reorganize shared modelsChocobozzz2020-08-071-1/+1
|
* Upgrade to angular 10Chocobozzz2020-08-071-14/+9
|
* deal with refresh token in embedRigel Kent2020-08-061-6/+61
|
* decouple video abuse details from embed, add embed to block list detailsRigel Kent2020-08-061-2/+11
|
* Add ability to disable peertube link in embedChocobozzz2020-07-311-1/+3
|
* Fix player menu on mobileChocobozzz2020-07-021-1/+1
|
* Fix videojsChocobozzz2020-04-211-1/+1
|
* Fix videojs typingsChocobozzz2020-04-171-3/+3
|
* Fix saved mute in embedChocobozzz2020-02-281-1/+1
|
* Merge branch 'release/2.1.0' into developChocobozzz2020-02-261-0/+3
|\
| * Fix IOS embed playerChocobozzz2020-02-261-0/+3
| |
* | Improve embed title background opacityChocobozzz2020-02-031-20/+20
|/
* Fix test embed pageChocobozzz2019-12-181-1/+0
|
* Speedup embed first paintChocobozzz2019-12-181-9/+45
|
* Add hook to alter player build optionsChocobozzz2019-12-051-1/+1
|
* Auto load HLS player in embed tooChocobozzz2019-11-251-3/+11
|
* Disable webtorrent support in clientChocobozzz2019-11-251-1/+1
|
* Cleaner warning of IP address leaking on embedded videos (#2034)Robin2019-08-161-1/+1
| | | | | | * Update peertube-skin.scss * Update embed.ts
* Fix broken playlist apiChocobozzz2019-08-011-1/+1
|
* Add more embed parametersChocobozzz2019-06-111-148/+57
|
* Add ability to disable trackerChocobozzz2019-04-101-8/+18
|
* tslint updateChocobozzz2019-04-021-6/+6
|
* Update client depChocobozzz2019-04-021-17/+0
|
* Add to playlist dropdownChocobozzz2019-03-181-0/+3
|
* Add player mode in watch/embed urlsChocobozzz2019-02-111-1/+1
|
* Fallback HLS to webtorrentChocobozzz2019-02-111-6/+7
|
* Add hls support on serverChocobozzz2019-02-111-6/+15
|
* Add lazy loading in playerChocobozzz2019-02-111-0/+1
|
* Correctly implement p2p-media-loaderChocobozzz2019-02-111-11/+20
|
* Refractor videojs playerChocobozzz2019-02-111-49/+59
| | | | Add fake p2p-media-loader plugin
* Add missing translations in embed templateChocobozzz2019-01-141-12/+18
|
* Set last subtitle or subtitle in URLChocobozzz2018-12-171-13/+15
|
* Fix embed video id parsingChocobozzz2018-11-151-3/+2
|
* Fix embedChocobozzz2018-10-191-1/+1
|
* Better typingsChocobozzz2018-10-181-2/+5
|
* NoImplicitAny flag true (#1157)BO412018-10-181-2/+2
| | | | | | | | this enables the `noImplicitAny` flag in the Typescript compiler > When the noImplicitAny flag is true and the TypeScript compiler cannot infer the type, it still generates the JavaScript files, but it also reports an error. Many seasoned developers prefer this stricter setting because type checking catches more unintentional errors at compile time. closes: #1131 replaces #1137