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
// AppClass | |
define("com_markit_header", ["F2.Defer", "F2", "MyCoolClass"], function(defer, F2) { | |
var AppClass = function() {}; | |
return AppClass; | |
}); |
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
define("F2.BaseAppClass", ["F2.Events", "F2.Defer"], function(events, defer) { | |
var AppClass = function() {}; | |
// Init function that will be called by F2 automatically | |
// You probably don't want to override this, but you can | |
AppClass.prototype.init = function(appId, instanceId, context) { | |
var self = this; | |
this.appId = appId; |
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 Spoiler hider | |
// @description Hide spoilers on the page without the subreddit theme | |
// @author Chris Montrois | |
// @include *reddit.com/r/diablo/ | |
// @version 1.0 | |
// ==/UserScript== | |
// A function that loads jQuery and calls a callback function when jQuery has finished loading | |
function addJQuery(callback) { |
NewerOlder