Skip to content

Instantly share code, notes, and snippets.

@mcavaliere
Created December 21, 2015 21:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcavaliere/4e8ba03644312924f61d to your computer and use it in GitHub Desktop.
Save mcavaliere/4e8ba03644312924f61d to your computer and use it in GitHub Desktop.
// Old
var DEBUG = false;
var MAX_ENTRIES = 100;
var FEED_URL = "http://mysite.com/feed/";
var POST_IDS = [123, 456, 789];
// New
var Config = {
DEBUG: true,
MAX_ENTRIES: 100,
FEED_URL: "http://mysite.com/feed/",
POST_IDS: [123, 456, 789]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment