Last active
March 4, 2020 12:20
-
-
Save cms-jakes/ecde340780ee1dd80da03e97a4c9fe09 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name End of Module Return to Home | |
| // @namespace _| /\ |< { | |
| // @version 0.1 | |
| // @description Send user to home page when reaching end of module page instead of going to the next module | |
| // @author Jake Standish [email protected] | |
| // @match https://*.instructure.com/*/pages/* | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| window.addEventListener('load', function () { | |
| setTimeout(function(){ | |
| var url = window.location.href; | |
| var split = url.split('/'); | |
| var page = split[split.length-1].split('?')[0]; | |
| var moduleSearch = url.search('module_item_id'); | |
| console.log('m search: '+moduleSearch); | |
| var home = url.split('/pages')[0]; | |
| console.log(page); | |
| if(page.replace(/\-/g,'').toLowerCase().indexOf('modulecomplete')>-1){ | |
| $('.module-sequence-footer-button--next').each(function(){ | |
| $(this).html('<a class="Button" href="'+home+'"><i class="icon-home"></i> Return to Home Page</a>'); | |
| $(this).attr('data-html-tooltip-title','go home'); | |
| }); | |
| }; | |
| },100); | |
| }) | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment