Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions library/echolink.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ M.mod_echolink.init = function(Y, args) {


function essCourseEventHandler(e) {
e.preventDefault();

var echolinkEventURL = essCourseEventURL + e.target.get('id');
var callbackHandler = {
success: function(o) {
Expand Down Expand Up @@ -98,6 +100,8 @@ M.mod_echolink.init = function(Y, args) {


function essSectionEventHandler(e) {
e.preventDefault();

var echolinkEventURL = essSectionEventURL + e.target.get('id');

var callbackHandler = {
Expand Down Expand Up @@ -138,6 +142,7 @@ M.mod_echolink.init = function(Y, args) {


function essECPPresentationEventHandler(e) {
e.preventDefault();

// Check if selected Echo360 Link is for ECP or Presentation
if(e.target.get('id').indexOf('ess/portal/section/') != -1) { // ESS ECP Link
Expand Down