{"version":3,"file":"snap.min.js","sources":["https:\/\/e-learning.fra.europa.eu\/theme\/snap\/amd\/src\/snap.js"],"sourcesContent":["\/**\n * This file is part of Moodle - http:\/\/moodle.org\/\n *\n * Moodle is free software: you can redistribute it and\/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * Moodle is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with Moodle. If not, see .\n *\n * @package\n * @copyright Copyright (c) 2015 Open LMS (https:\/\/www.openlms.net)\n * @license http:\/\/www.gnu.org\/copyleft\/gpl.html GNU GPL v3 or later\n *\/\n\n\/* exported snapInit *\/\n\/* eslint no-invalid-this: \"warn\"*\/\n\n\/**\n * Main snap initialising function.\n *\/\ndefine(['jquery', 'core\/log', 'theme_snap\/headroom', 'theme_snap\/util', 'theme_snap\/personal_menu',\n 'theme_snap\/cover_image', 'theme_snap\/progressbar', 'core\/templates', 'core\/str', 'theme_snap\/accessibility',\n 'theme_snap\/messages', 'theme_snap\/scroll'],\n function($, log, Headroom, util, personalMenu, coverImage, ProgressBar, templates, str, accessibility, messages, Scroll) {\n\n 'use strict';\n\n \/* eslint-disable camelcase *\/\n M.theme_snap = M.theme_snap || {};\n \/* eslint-enable camelcase *\/\n\n \/**\n * master switch for logging\n * @type {boolean}\n *\/\n var loggingenabled = false;\n\n if (!loggingenabled) {\n log.disableAll(true);\n } else {\n log.enableAll(true);\n }\n\n \/**\n * Initialize pre SCSS and grading constants.\n * New variables can be initialized if necessary.\n * These variables are being passed from classes\/output\/shared.php,\n * and being updated from php constants in snapInit.\n *\/\n var brandColorSuccess = '';\n var brandColorWarning = '';\n var GRADE_DISPLAY_TYPE_PERCENTAGE = '';\n var GRADE_DISPLAY_TYPE_PERCENTAGE_REAL = '';\n var GRADE_DISPLAY_TYPE_PERCENTAGE_LETTER = '';\n var GRADE_DISPLAY_TYPE_REAL = '';\n var GRADE_DISPLAY_TYPE_REAL_PERCENTAGE = '';\n var GRADE_DISPLAY_TYPE_REAL_LETTER = '';\n\n \/**\n * Get all url parameters from href\n * @param {string} href\n * @returns {Array}\n *\/\n var getURLParams = function(href) {\n \/\/ Create temporary array from href.\n var ta = href.split('?');\n if (ta.length < 2) {\n return false; \/\/ No url params\n }\n \/\/ Get url params full string from href.\n var urlparams = ta[1];\n\n \/\/ Strip out hash component\n urlparams = urlparams.split('#')[0];\n\n \/\/ Get urlparam items.\n var items = urlparams.split('&');\n\n \/\/ Create params array of values hashed by key.\n var params = [];\n for (var i = 0; i < items.length; i++) {\n var item = items[i].split('=');\n var key = item[0];\n var val = item[1];\n params[key] = val;\n }\n return (params);\n };\n\n \/**\n * Change save and cancel buttons from forms to the bottom on mobile mode.\n *\/\n $(window).on('resize', function() {\n mobileFormChecker();\n updateGraderHeadersTop();\n });\n\n var mobileFormChecker = function() {\n var savebuttonsformrequired = $('div[role=main] .mform div.snap-form-required fieldset > div.form-group.fitem');\n var savebuttonsformadvanced = $('div[role=main] .mform div.snap-form-advanced > div:nth-of-type(3)');\n var width = $(window).width();\n if (width < 992) {\n $('.snap-form-advanced').append(savebuttonsformrequired);\n } else if (width > 992) {\n $('.snap-form-required fieldset#id_general').append(savebuttonsformadvanced);\n }\n };\n\n const updateGraderHeadersTop = function() {\n const graderHeader = $('.path-grade-report-grader .gradeparent tr.heading');\n if (graderHeader.length) {\n graderHeader.css('top', $('#mr-nav').height() + 'px');\n }\n };\n\n const regionMain = $('.path-grade-report-grader #region-main div[role=\"main\"]');\n if (regionMain.length > 0) {\n const gradeParent = regionMain[0].querySelector('.gradeparent');\n if (gradeParent) {\n regionMain.addClass('snap-grade-reporter');\n }\n }\n\n updateGraderHeadersTop();\n\n \/**\n * Move PHP errors into header\n *\n * @author Guy Thomas\n * @date 2014-05-19\n *\/\n var movePHPErrorsToHeader = function() {\n \/\/ Remove
tags inserted before xdebug-error.\n var xdebugs = $('.xdebug-error');\n if (xdebugs.length) {\n for (var x = 0; x < xdebugs.length; x++) {\n var el = xdebugs[x];\n var fontel = el.parentNode;\n var br = $(fontel).prev('br');\n $(br).remove();\n }\n }\n\n \/\/ Get messages using the different classes we want to use to target debug messages.\n var msgs = $('.xdebug-error, .php-debug, .debuggingmessage');\n\n if (msgs.length) {\n \/\/ OK we have some errors - lets shove them in the footer.\n $(msgs).addClass('php-debug-footer');\n var errorcont = $('

' +\n M.util.get_string('debugerrors', 'theme_snap') +\n '<\/h3>
<\/div>');\n $('#page-footer').append(errorcont);\n $('#footer-error-cont').append(msgs);\n \/\/ Add rulers\n $('.php-debug-footer').after($('
'));\n \/\/ Lets also add the error class to the header so we know there are some errors.\n $('#mr-nav').addClass('errors-found');\n \/\/ Lets add an error link to the header.\n var errorlink = $('' +\n M.util.get_string('problemsfound', 'theme_snap') + ' ' + (msgs.length) + '<\/span><\/a>');\n $('#page-header').append(errorlink);\n }\n };\n\n \/**\n * Are we on the course page?\n * Note: This doesn't mean that we are in a course - Being in a course could mean that you are on a module page.\n * This means that you are actually on the course page.\n * @returns {boolean}\n *\/\n var onCoursePage = function() {\n return $('body').attr('id').indexOf('page-course-view-') === 0;\n };\n\n \/**\n * Apply block hash to form actions etc if necessary.\n *\/\n \/* eslint-disable no-invalid-this *\/\n var applyBlockHash = function() {\n \/\/ Add block hash to add block form.\n if (onCoursePage()) {\n $('.block_adminblock form').each(function() {\n \/* eslint-disable no-invalid-this *\/\n $(this).attr('action', $(this).attr('action') + '#coursetools');\n });\n }\n\n if (location.hash !== '') {\n return;\n }\n\n var urlParams = getURLParams(location.href);\n\n \/\/ If calendar navigation has been clicked then go back to calendar.\n if (onCoursePage() && typeof (urlParams.time) !== 'undefined') {\n location.hash = 'coursetools';\n if ($('.block_calendar_month')) {\n util.scrollToElement($('.block_calendar_month'));\n }\n }\n\n \/\/ Form selectors for applying blocks hash.\n var formselectors = [\n 'body.path-blocks-collect #notice form'\n ];\n\n \/\/ There is no decent selector for block deletion so we have to add the selector if the current url has the\n \/\/ appropriate parameters.\n var paramchecks = ['bui_deleteid', 'bui_editid'];\n for (var p in paramchecks) {\n var param = paramchecks[p];\n if (typeof (urlParams[param]) !== 'undefined') {\n formselectors.push('#notice form');\n break;\n }\n }\n\n \/\/ If required, apply #coursetools hash to form action - this is so that on submitting form it returns to course\n \/\/ page on blocks tab.\n $(formselectors.join(', ')).each(function() {\n \/\/ Only apply the blocks hash if a hash is not already present in url.\n var formurl = $(this).attr('action');\n if (formurl.indexOf('#') === -1\n && (formurl.indexOf('\/course\/view.php') > -1)\n ) {\n $(this).attr('action', $(this).attr('action') + '#coursetools');\n }\n });\n };\n\n \/**\n * Set forum strings because there isn't a decent renderer for mod\/forum\n * It would be great if the official moodle forum module used a renderer for all output\n *\n * @author Guy Thomas\n * @date 2014-05-20\n *\/\n var setForumStrings = function() {\n $('.path-mod-forum tr.discussion td.topic.starter').attr('data-cellname',\n M.util.get_string('forumtopic', 'theme_snap'));\n $('.path-mod-forum tr.discussion td.picture:not(\\'.group\\')').attr('data-cellname',\n M.util.get_string('forumauthor', 'theme_snap'));\n $('.path-mod-forum tr.discussion td.picture.group').attr('data-cellname',\n M.util.get_string('forumpicturegroup', 'theme_snap'));\n $('.path-mod-forum tr.discussion td.replies').attr('data-cellname',\n M.util.get_string('forumreplies', 'theme_snap'));\n $('.path-mod-forum tr.discussion td.lastpost').attr('data-cellname',\n M.util.get_string('forumlastpost', 'theme_snap'));\n };\n\n \/**\n * Process toc search string - trim, remove case sensitivity etc.\n *\n * @author Guy Thomas\n * @param {string} searchString\n * @returns {string}\n *\/\n var processSearchString = function(searchString) {\n searchString = searchString.trim().toLowerCase();\n return (searchString);\n };\n\n \/**\n * Search course modules\n *\n * @author Stuart Lamour\n * @param {array} dataList\n *\/\n var tocSearchCourse = function(dataList) {\n \/\/ Keep search input open\n var i;\n var ua = window.navigator.userAgent;\n if (ua.indexOf('MSIE ') || ua.indexOf('Trident\/')) {\n \/\/ We have reclone datalist over again for IE, or the same search fails the second time round.\n dataList = $(\"#toc-searchables\").find('li').clone(true);\n }\n\n \/\/ TODO - for 2.7 process search string called too many times?\n var searchString = $(\"#toc-search-input\").val();\n searchString = processSearchString(searchString);\n\n if (searchString.length === 0) {\n $('#toc-search-results').html('');\n $(\"#toc-search-input\").removeClass('state-active');\n\n } else {\n $(\"#toc-search-input\").addClass('state-active');\n var matches = [];\n for (i = 0; i < dataList.length; i++) {\n var dataItem = dataList[i];\n if (processSearchString($(dataItem).text()).indexOf(searchString) > -1) {\n matches.push(dataItem);\n }\n }\n $('#toc-search-results').html(matches);\n }\n };\n\n \/**\n * Apply body classes which could not be set by renderers - e.g. when a notice was outputted.\n * We could do this in plain CSS if there was such a think as a parent selector.\n *\/\n var bodyClasses = function() {\n var extraclasses = [];\n if ($('#notice.snap-continue-cancel').length) {\n extraclasses.push('hascontinuecancel');\n }\n $('body').addClass(extraclasses.join(' '));\n };\n\n \/**\n * Listen for hash changes \/ popstates.\n * @param {CourseLibAmd} courseLib\n *\/\n var listenHashChange = function(courseLib) {\n var lastHash = location.hash;\n $(window).on('popstate hashchange', function(e) {\n var newHash = location.hash;\n log.info('hashchange');\n if (newHash !== lastHash) {\n if (location.hash === '#primary-nav') {\n personalMenu.update();\n } else {\n $('#page, #moodle-footer, #js-snap-pm-trigger, #logo, .skiplinks').css('display', '');\n if (onCoursePage()) {\n log.info('show section', e.target);\n courseLib.showSection();\n }\n }\n }\n lastHash = newHash;\n });\n };\n\n \/**\n * Course footer recent activity dom re-order.\n *\/\n var recentUpdatesFix = function() {\n $('#snap-course-footer-recent-activity .info').each(function() {\n $(this).appendTo($(this).prev());\n });\n $('#snap-course-footer-recent-activity .head .name').each(function() {\n $(this).prependTo($(this).closest(\".head\"));\n });\n };\n\n \/**\n * Apply progressbar.js for circular progress displays.\n * @param {node} nodePointer\n * @param {function} dataCallback\n * @param {function} valueCallback\n *\/\n var createColoredDataCircle = function(nodePointer, dataCallback, valueCallback = null) {\n var circle = new ProgressBar.Circle(nodePointer, {\n color: 'inherit', \/\/ @gray.\n easing: 'linear',\n strokeWidth: 6,\n trailWidth: 3,\n duration: 1400,\n text: {\n value: '0'\n }\n });\n var value = ($(nodePointer).attr('value') \/ 100);\n var endColor = brandColorSuccess; \/\/ Green @brand-success.\n if (value === 0 || $(nodePointer).attr('value') === '-') {\n circle.setText('-');\n } else {\n if ($(nodePointer).attr('value') < 50) {\n endColor = brandColorWarning; \/\/ Orange @brand-warning.\n }\n circle.setText(dataCallback(nodePointer));\n }\n var valueAnimate = 0;\n\n if (valueCallback === null) {\n valueAnimate = value;\n } else {\n valueAnimate = valueCallback(nodePointer);\n }\n circle.animate(valueAnimate, {\n from: {\n color: '#999' \/\/ @gray-light.\n },\n to: {\n color: endColor\n },\n step: function(state, circle) {\n circle.path.setAttribute('stroke', state.color);\n }\n });\n };\n\n var progressbarcircle = function() {\n $('.snap-student-dashboard-progress .js-progressbar-circle').each(function() {\n createColoredDataCircle(this, function(nodePointer) {\n return $(nodePointer).attr('value') + '%<\/small>';\n });\n });\n\n $('.snap-student-dashboard-grade .js-progressbar-circle').each(function() {\n createColoredDataCircle(this, function(nodePointer) {\n var nodeValue = $(nodePointer).attr('value');\n var gradeFormat = $(nodePointer).attr('gradeformat');\n\n \/**\n * Definitions for gradebook.\n *\n * We need to display the % for all the grade formats which contains a % in the value.\n *\/\n if (gradeFormat == GRADE_DISPLAY_TYPE_PERCENTAGE\n || gradeFormat == GRADE_DISPLAY_TYPE_PERCENTAGE_REAL\n || gradeFormat == GRADE_DISPLAY_TYPE_PERCENTAGE_LETTER) {\n nodeValue = nodeValue + '%<\/small>';\n }\n return nodeValue;\n }, function(nodePointer) {\n var valueAnimate = $(nodePointer).attr('value');\n var gradeFormat = $(nodePointer).attr('gradeformat');\n\n if (gradeFormat == GRADE_DISPLAY_TYPE_REAL\n || gradeFormat == GRADE_DISPLAY_TYPE_REAL_PERCENTAGE\n || gradeFormat == GRADE_DISPLAY_TYPE_REAL_LETTER) {\n valueAnimate = 0;\n } else {\n valueAnimate = ($(nodePointer).attr('value') \/ 100);\n }\n return valueAnimate;\n });\n });\n };\n\n \/**\n * Add listeners.\n *\n * just a wrapper for various snippets that add listeners\n *\/\n var addListeners = function() {\n var selectors = [\n '.chapters a',\n '.section_footer a',\n ' #toc-search-results a'\n ];\n\n $(document).on('click', selectors.join(', '), function(e) {\n var href = this.getAttribute('href');\n if (window.history && window.history.pushState) {\n history.pushState(null, null, href);\n \/\/ Force hashchange fix for FF & IE9.\n $(window).trigger('hashchange');\n \/\/ Prevent scrolling to section.\n e.preventDefault();\n } else {\n location.hash = href;\n }\n });\n\n \/\/ Show fixed header on scroll down\n \/\/ using headroom js - http:\/\/wicky.nillia.ms\/headroom.js\/\n var myElement = document.querySelector(\"#mr-nav\");\n \/\/ Functions added to trigger on pin and unpin actions for the nav bar\n var onPin = () => {\n $('.snap-drawer-no-headroom').addClass('snap-drawer-headroom');\n $('.snap-drawer-headroom').removeClass('snap-drawer-no-headroom');\n };\n var onUnpin = () => {\n $('.snap-drawer-headroom').addClass('snap-drawer-no-headroom');\n $('.snap-drawer-no-headroom').removeClass('snap-drawer-headroom');\n };\n \/\/ Construct an instance of Headroom, passing the element.\n var headroom = new Headroom(myElement, {\n \"tolerance\": 5,\n \"offset\": 100,\n \"classes\": {\n \/\/ When element is initialised\n initial: \"headroom\",\n \/\/ When scrolling up\n pinned: \"headroom--pinned\",\n \/\/ When scrolling down\n unpinned: \"headroom--unpinned\",\n \/\/ When above offset\n top: \"headroom--top\",\n \/\/ When below offset\n notTop: \"headroom--not-top\"\n },\n \"onPin\": onPin,\n \"onUnpin\": onUnpin\n });\n \/\/ When not signed in always show mr-nav?\n if (!$('.notloggedin').length) {\n headroom.init();\n }\n\n \/\/ Listener for toc search.\n var dataList = $(\"#toc-searchables\").find('li').clone(true);\n $('#course-toc').on('keyup', '#toc-search-input', function() {\n tocSearchCourse(dataList);\n });\n\n \/\/ Handle keyboard navigation of search items.\n $('#course-toc').on('keydown', '#toc-search-input', function(e) {\n var keyCode = e.keyCode || e.which;\n if (keyCode === 9) {\n \/\/ 9 tab\n \/\/ 13 enter\n \/\/ 40 down arrow\n \/\/ Register listener for exiting search result.\n $('#toc-search-results a').last().blur(function() {\n $(this).off('blur'); \/\/ Unregister listener\n $(\"#toc-search-input\").val('');\n $('#toc-search-results').html('');\n $(\"#toc-search-input\").removeClass('state-active');\n });\n\n }\n });\n\n $('#course-toc').on(\"click\", '#toc-search-results a', function() {\n $(\"#toc-search-input\").val('');\n $('#toc-search-results').html('');\n $(\"#toc-search-input\").removeClass('state-active');\n });\n\n \/**\n * When the document is clicked, if the closest object that was clicked was not the search input then close\n * the search results.\n * Note that this is triggered also when you click on a search result as the results should no longer be\n * required at that point.\n *\/\n $(document).on('click', function(event) {\n if (!$(event.target).closest('#toc-search-input').length) {\n $(\"#toc-search-input\").val('');\n $('#toc-search-results').html('');\n $(\"#toc-search-input\").removeClass('state-active');\n }\n });\n\n \/\/ Onclick for toggle of state-visible of admin block and mobile menu.\n $(document).on(\"click\", \"#admin-menu-trigger, #toc-mobile-menu-toggle\", function(e) {\n var href = this.getAttribute('href');\n \/\/ Make this only happen for settings button.\n if (this.getAttribute('id') === 'admin-menu-trigger') {\n $(this).toggleClass('active');\n $('#page').toggleClass('offcanvas');\n }\n $(href).attr('tabindex', '0');\n $(href).toggleClass('state-visible').focus();\n e.preventDefault();\n\n if ($('.message-app.main').length === 0) {\n document.dispatchEvent(new Event(\"messages-drawer:toggle\"));\n }\n });\n\n \/\/ Mobile menu button.\n $(document).on(\"click\", \"#course-toc.state-visible a\", function() {\n $('#course-toc').removeClass('state-visible');\n });\n\n \/\/ Reset videos, when changing section (INT-18208).\n $(document).on(\"click\", \".section_footer a, .chapter-title, .toc-footer a\", function() {\n const videos = $('[title=\"watch\"], .video-js, iframe:not([id])');\n for (let i = 0; i < videos.length; i++) {\n if (videos[i].classList.contains('video-js')) {\n if (videos[i].classList.contains('vjs-playing')) {\n let videoButton = videos[i].querySelector('.vjs-play-control.vjs-control.vjs-button');\n videoButton.click(); \/\/ Stop for videos using video-js Plugin.\n }\n } else if (videos[i].nodeName === 'IFRAME') {\n if (videos[i].src.includes(\"vimeo\")) {\n videos[i].src += \"\"; \/\/ Stop for Vimeo embedded videos.\n }\n } else {\n videos[i].querySelector('iframe').src += \"\"; \/\/ Stop for Youtube embedded videos.\n }\n }\n });\n\n $(document).on('click', '.news-article .toggle', function(e) {\n var $news = $(this).closest('.news-article');\n var $newstoggle = $(this);\n var $newsclose = $news.find('.news-article-message > div > a[role=\"button\"]');\n util.scrollToElement($news);\n $('.news-article').not($news).removeClass('state-expanded');\n $('.news-article .toggle').not($newstoggle).attr('aria-expanded', 'false');\n $('.news-article-message > div > a[role=\"button\"]').not($newsclose).attr('aria-expanded', 'false');\n $('.news-article-message').css('display', 'none');\n\n $news.toggleClass('state-expanded');\n if (!$news.attr('state-expanded')) {\n $news.focus();\n $newstoggle.attr('aria-expanded', 'false');\n $newsclose.attr('aria-expanded', 'false');\n }\n $('.state-expanded').find('.news-article-message').slideDown(\"fast\", function() {\n \/\/ Animation complete.\n if ($news.is('.state-expanded')) {\n $news.find('.news-article-message').focus();\n $newstoggle.attr('aria-expanded', 'true');\n $newsclose.attr('aria-expanded', 'true');\n } else {\n $news.focus();\n $newstoggle.attr('aria-expanded', 'false');\n $newsclose.attr('aria-expanded', 'false');\n }\n $(document).trigger('snapContentRevealed');\n });\n e.preventDefault();\n });\n\n \/\/ Add listeners for pausing animated images.\n $(document).on('click', '.anim-play-button', function() {\n $(this).parent().prev().css('visibility', 'visible');\n });\n $(document).on('click', '.anim-pause-button', function() {\n $(this).parent().prev().css('visibility', 'hidden');\n });\n\n \/\/ Initialise the scroll event listener.\n (new Scroll()).init();\n\n \/\/ Bootstrap js elements.\n\n \/\/ Initialise core bootstrap tooltip js.\n $(function() {\n var supportsTouch = false;\n if ('ontouchstart' in window) {\n \/\/ IOS & android\n supportsTouch = true;\n } else if (window.navigator.msPointerEnabled) {\n \/\/ Win8\n supportsTouch = true;\n }\n if (!supportsTouch) {\n var tooltipNode = $('[data-toggle=\"tooltip\"]');\n if ($.isFunction(tooltipNode.tooltip)) {\n tooltipNode.tooltip();\n }\n }\n });\n };\n\n \/**\n * Function to fix the styles when fullscreen is used with Atto Editor.\n *\/\n function waitForFullScreenButton() {\n var maxIterations = 15;\n var i = 0;\n var checker = setInterval(function() {\n i = i + 1;\n if (i > maxIterations) {\n clearInterval(checker);\n } else {\n if ($('button.atto_fullscreen_button').length != 0 && $('div.editor_atto').length != 0) {\n $('button.atto_fullscreen_button').click(function() {\n $('div.editor_atto').css('background-color', '#eee');\n $('div.editor_atto').css('z-index', '1');\n });\n $('button.atto_html_button').click(function() {\n $('#id_introeditor').css('z-index', '1');\n });\n clearInterval(checker);\n }\n }\n }, 2000);\n }\n\n \/**\n * AMD return object.\n *\/\n return {\n \/**\n * Snap initialise function.\n * @param {object} courseConfig\n * @param {bool} pageHasCourseContent\n * @param {int} siteMaxBytes\n * @param {bool} forcePassChange\n * @param {bool} messageBadgeCountEnabled\n * @param {int} userId\n * @param {bool} sitePolicyAcceptReqd\n * @param {bool} inAlternativeRole\n * @param {string} brandColors\n * @param {int} gradingConstants\n *\/\n snapInit: function(courseConfig, pageHasCourseContent, siteMaxBytes, forcePassChange,\n messageBadgeCountEnabled, userId, sitePolicyAcceptReqd, inAlternativeRole,\n brandColors, gradingConstants) {\n\n \/\/ Set up.\n\n \/\/ Branding colors. New colors can be set up if necessary.\n brandColorSuccess = brandColors.success;\n brandColorWarning = brandColors.warning;\n \/\/ Grading constants for percentage.\n GRADE_DISPLAY_TYPE_PERCENTAGE = gradingConstants.gradepercentage;\n GRADE_DISPLAY_TYPE_PERCENTAGE_REAL = gradingConstants.gradepercentagereal;\n GRADE_DISPLAY_TYPE_PERCENTAGE_LETTER = gradingConstants.gradepercentageletter;\n GRADE_DISPLAY_TYPE_REAL = gradingConstants.gradereal;\n GRADE_DISPLAY_TYPE_REAL_PERCENTAGE = gradingConstants.graderealpercentage;\n GRADE_DISPLAY_TYPE_REAL_LETTER = gradingConstants.graderealletter;\n\n M.cfg.context = courseConfig.contextid;\n M.snapTheme = {forcePassChange: forcePassChange};\n\n \/\/ General AMD modules.\n personalMenu.init(sitePolicyAcceptReqd);\n\n \/\/ Course related AMD modules (note, site page can technically have course content too).\n if (pageHasCourseContent) {\n require(\n [\n 'theme_snap\/course-lazy'\n ], function(CourseLibAmd) {\n \/\/ Instantiate course lib.\n var courseLib = new CourseLibAmd(courseConfig);\n\n \/\/ Hash change listener goes here because it requires courseLib.\n listenHashChange(courseLib);\n }\n );\n }\n\n \/\/ When document has loaded.\n \/* eslint-disable complexity *\/\n $(document).ready(function() {\n movePHPErrorsToHeader(); \/\/ Boring\n setForumStrings(); \/\/ Whatever\n addListeners(); \/\/ Essential\n applyBlockHash(); \/\/ Change location hash if necessary\n bodyClasses(); \/\/ Add body classes\n mobileFormChecker();\n util.processAnimatedImages();\n\n \/\/ Make sure that the blocks are always within page-content for assig view page.\n $('#page-mod-assign-view #page-content').append($('#moodle-blocks'));\n\n \/\/ Remove from Dom the completion tracking when it is disabled for an activity.\n $('.snap-header-card .snap-header-card-icons .disabled-snap-asset-completion-tracking').remove();\n\n \/\/ Prepend asset type when activity is a folder to appear in the card header instead of the content.\n var folders = $('li.snap-activity.modtype_folder');\n $.each(folders, function(index, folder) {\n var content = $(folder).find('div.contentwithoutlink div.snap-assettype');\n if (content.length > 0) {\n if ($(folder).find('div.activityinstance div.snap-header-card .asset-type').length == 0) {\n var folderAssetTypeHeader = $(folder).find('div.activityinstance div.snap-header-card');\n content.prependTo(folderAssetTypeHeader);\n }\n }\n });\n\n \/\/ Add a class to the body to show js is loaded.\n $('body').addClass('snap-js-loaded');\n \/\/ Apply progressbar.js for circluar progress display.\n progressbarcircle();\n \/\/ Course footer recent updates dom fixes.\n recentUpdatesFix();\n\n if ($('body').hasClass('pagelayout-course') || $('body').hasClass('pagelayout-frontpage')) {\n coverImage.courseImage(courseConfig.shortname, siteMaxBytes);\n } else if ($('body').hasClass('pagelayout-coursecategory')) {\n if (courseConfig.categoryid) {\n coverImage.categoryImage(courseConfig.categoryid, siteMaxBytes);\n }\n }\n\n \/\/ Allow deeplinking to bs tabs on snap settings page.\n if ($('#page-admin-setting-themesettingsnap').length) {\n var tabHash = location.hash;\n \/\/ Check link is to a tab hash.\n if (tabHash && $('.nav-link[href=\"' + tabHash + '\"]').length) {\n $('.nav-link[href=\"' + tabHash + '\"]').tab('show');\n $(window).scrollTop(0);\n }\n }\n\n \/\/ Add extra padding when the error validation message appears at the moment of enter a not valid\n \/\/ URL for feature spots.\n var firstlinkerror = $('#page-admin-setting-themesettingsnap #themesnapfeaturespots' +\n ' #admin-fs_one_title_link span.error');\n var secondlinkerror = $('#page-admin-setting-themesettingsnap #themesnapfeaturespots' +\n ' #admin-fs_two_title_link span.error');\n var thirdlinkerror = $('#page-admin-setting-themesettingsnap #themesnapfeaturespots' +\n ' #admin-fs_three_title_link span.error');\n var titlelinksettingone = $('#page-admin-setting-themesettingsnap #themesnapfeaturespots' +\n ' #admin-fs_one_title_link .form-label');\n var titlelinksettingtwo = $('#page-admin-setting-themesettingsnap #themesnapfeaturespots' +\n ' #admin-fs_two_title_link .form-label');\n var titlelinksettingthree = $('#page-admin-setting-themesettingsnap #themesnapfeaturespots' +\n ' #admin-fs_three_title_link .form-label');\n \/\/ Create an extra Div to wrap title links settings to avoid line break.\n $('#page-admin-setting-themesettingsnap #themesnapfeaturespots ' +\n '#admin-fs_three_title').nextUntil('#page-admin-setting-themesettingsnap #themesnapfeaturespots ' +\n '#admin-fs_one_title_link_cb').wrapAll(\"