- 18 Jun, 2021 1 commit
-
-
Andrew Nicols authored
-
- 26 May, 2021 1 commit
-
-
Andrew Nicols authored
The legacy M.core.event.FILTER_CONTENT_UPDATED event has been replaced with a new core_filter/events::filterContentUpdated native DOM event. The new event can be triggered using the `notifyFilterContentUpdated` function, and by providing with an Array containing the HTMLElements that were updated, for example: ``` import {notifyFilterContentUpdated} from 'core_filter/events'; const someHandler = e => { // ... const nodeList = Array.from(document.querySelectorAll('div')); notifyFilterContentUpdated(nodeList); }; ``` The new event can be listened to at any point in the DOM using the following syntax: ``` import {eventTypes} from 'core_filter/events'; const handler = e => { // The list of HTMLElements in an Array. e.detail.nodes; }; document.addEventListener(eventTypes.filterContentUpdated, handler); ``` A backward-compatabibility layer is included to ensure that any legacy YUI event listener, or jQuery event listener are still called with the same arguments. This legacy bridges will be removed after Moodle 4.3.
-
- 16 Mar, 2021 1 commit
-
-
Paul Holden authored
Hotkeys were enabled by default, except fullscreen (hotkey "f").
-
- 15 Jan, 2021 1 commit
-
-
Paul Holden authored
-
- 23 Dec, 2020 1 commit
-
-
Ferran Recio Calderó authored
-
- 09 Sep, 2020 1 commit
-
-
Andrew Nicols authored
-
- 04 Sep, 2020 2 commits
-
-
Shamim Rezaie authored
-
Shamim Rezaie authored
-
- 11 May, 2020 1 commit
-
-
Andrew Nicols authored
This change includes a build to fix all minified file changes in Moodle as a result of upgrades to our build process.
-
- 06 May, 2020 1 commit
-
-
Mihail Geshoski authored
Upgrade VideoJS (7.7.6), Youtube Playback for VideoJS (2.6.1), Flash Tech for VideoJS (2.2.1), Flash Player for VideoJS (5.4.2)
-
- 25 Sep, 2019 1 commit
-
-
Matt Porritt authored
Upgrade videojs media player to version 7.6.5 as well as a general update this adds MPEG-DASH and HLS playlist support to the Video.JS media player.
-
- 20 Sep, 2019 1 commit
-
-
Tom Dickman authored
Upgrade Video.JS to 7.5.5 Upgrade videojs-youtube plugin to 2.6.0 Upgrade videojs-flash plugin to 2.2.2 Added additional AMD modules for bootstrapping the DOM window and document objects to Video.JS in line with the updates made to Video.JS.
-
- 19 Jul, 2019 1 commit
-
-
Ryan Wyllie authored
-
- 10 Oct, 2017 1 commit
-
-
Marina Glancy authored
-
- 13 Jun, 2017 1 commit
-
-
Damyon Wiese authored
If we let videojs auto-init the video/audio tags present in the page - we cannot guarantee that the youtube library will be loaded by the time video.js is processing the tag. Video.js uses the presence of a data-setup attibute to signal that it should auto-init this tag, so we have to rename our config attribute to something else.
-
- 07 Apr, 2017 1 commit
-
-
Marina Glancy authored
-
- 12 Jan, 2017 2 commits
-
-
The videojs javascript is over 1MB of javascript which we don't need to load on every page, now that we only require it demand, the js can be lazily loaded when its needed, which keeps the first.js smaller and more likely to stay in browser cache.
-
Marina Glancy authored
-
- 02 Dec, 2016 1 commit
-
-
Andrew Nicols authored
-
- 01 Dec, 2016 1 commit
-
-
Frederic Massart authored
-
- 29 Nov, 2016 1 commit
-
-
Frederic Massart authored
-
- 16 Nov, 2016 1 commit
-
-
Marina Glancy authored
-
- 04 Nov, 2016 1 commit
-
-
Marina Glancy authored
-