Skip to content

Instantly share code, notes, and snippets.

@gmrdad82
Created March 6, 2016 21:06
Show Gist options
  • Save gmrdad82/adf4ced880c6dcf82b17 to your computer and use it in GitHub Desktop.
Save gmrdad82/adf4ced880c6dcf82b17 to your computer and use it in GitHub Desktop.
(function() {
var weekday = function() {
var dayNames = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
now = new Date();
return dayNames[now.getDay()];
};
console && console.log('%crangeslider.js\n%cSimple, small and fast JavaScript/jQuery polyfill\nfor the HTML5 <input type=\"range\"> slider element. \n\nThanks for taking a look :)\nIt\'s always nice to see you.\nHave a nice ' + weekday() + '!\n\n<3\n\nAndré', 'font-size:2em;color:#00ff00;', 'color:#404040;font-size:1em;');
})();
// from: http://rangeslider.js.org/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment