* fix: eslint operator-linebreak issue * fix: eslint quotes issue * fix: react jsx indent and props issues * fix: eslint trailing spaces issues * fix: eslint line around directives issue * fix: eslint semi rule * fix: eslint newline per chain rule * fix: eslint space infix ops rule * fix: eslint space-in-parens issue * fix: eslint space before function paren issue * fix: eslint space before blocks issue * fix: eslint arrow body style issue * fix: eslint dot-location issue * fix: eslint quotes issue * fix: eslint quote props issue * fix: eslint operator assignment issue * fix: eslint new line after import issue * fix: indent issues * fix: operator assignment issue * fix: all autofixable eslint issues * fix: all react related fixable issues * fix: autofixable eslint issues * chore: remove all template literals * fix: remaining autofixable issues * chore: apply amnesty on all existing issues * fix: failing xss-lint issues * refactor: apply amnesty on remaining issues * refactor: apply amnesty on new issues * fix: remove file level suppressions * refactor: apply amnesty on new issues
35 lines
1.8 KiB
JavaScript
35 lines
1.8 KiB
JavaScript
(function() {
|
|
'use strict';
|
|
|
|
/**
|
|
* This function will process all the attributes from the DOM element passed, taking all of
|
|
* the configuration attributes. It uses the request-username and request-email
|
|
* to prompt the user to decide if they want to share their personal information
|
|
* with the third party application connecting through LTI.
|
|
* @constructor
|
|
* @param {jQuery} element DOM element with the lti container.
|
|
*/
|
|
this.LTI = function(element) {
|
|
var dataAttrs = $(element).find('.lti').data(),
|
|
askToSendUsername = (dataAttrs.askToSendUsername === 'True'),
|
|
askToSendEmail = (dataAttrs.askToSendEmail === 'True');
|
|
|
|
// When the lti button is clicked, provide users the option to
|
|
// accept or reject sending their information to a third party
|
|
$(element).on('click', '.link_lti_new_window', function() {
|
|
if (askToSendUsername && askToSendEmail) {
|
|
// eslint-disable-next-line no-alert
|
|
return confirm(gettext('Click OK to have your username and e-mail address sent to a 3rd party application.\n\nClick Cancel to return to this page without sending your information.'));
|
|
} else if (askToSendUsername) {
|
|
// eslint-disable-next-line no-alert
|
|
return confirm(gettext('Click OK to have your username sent to a 3rd party application.\n\nClick Cancel to return to this page without sending your information.'));
|
|
} else if (askToSendEmail) {
|
|
// eslint-disable-next-line no-alert
|
|
return confirm(gettext('Click OK to have your e-mail address sent to a 3rd party application.\n\nClick Cancel to return to this page without sending your information.'));
|
|
} else {
|
|
return true;
|
|
}
|
|
});
|
|
};
|
|
}).call(this);
|