Files
edx-platform/lms/static/js/courseware/courseware_factory.js
2016-05-19 14:58:22 -04:00

28 lines
973 B
JavaScript

;(function (define) {
'use strict';
define([
'jquery',
'logger',
'js/bookmarks/views/bookmarks_list_button'
],
function($, Logger, BookmarksListButton) {
return function() {
// This function performs all actions common to all courseware.
// 1. adding an event to all link clicks.
$('a:not([href^="#"])').click(function(event) {
Logger.log(
"edx.ui.lms.link_clicked",
{
current_url: window.location.href,
target_url: event.currentTarget.href
});
});
// 2. instantiating this button attaches events to all buttons in the courseware.
new BookmarksListButton(); // jshint ignore:line
};
}
);
}).call(this, define || RequireJS.define);