Created
March 6, 2016 21:06
-
-
Save gmrdad82/adf4ced880c6dcf82b17 to your computer and use it in GitHub Desktop.
This file contains 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
(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