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
| window.$.Deferred = function() { | |
| var resolver, rejector; | |
| var promise = new Promise(function(resolve, reject) { | |
| resolver = resolve; | |
| rejector = reject; | |
| }); | |
| var deferred = { | |
| resolve: resolver, | |
| reject: rejector, | |
| then: function(a, b) { promise = promise.then(a, b); return deferred; }, |
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
| Node.prototype.on = window.on = function (name, delegate, fn) { | |
| if(arguments.length !== 3) { | |
| return this.addEventListener(name, arguments[1]); | |
| } | |
| return this.addEventListener(name, function (e) { | |
| if(e.target.matches(delegate)){ | |
| return fn.apply(e.target, arguments); | |
| } | |
| }) |
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
| .gradient { | |
| background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB); | |
| background-size: 400% 400%; | |
| -webkit-animation: Gradient 5s ease infinite; | |
| -moz-animation: Gradient 5s ease infinite; | |
| animation: Gradient 5s ease infinite; | |
| } |
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
| Amigos | |
| Antique | |
| Apollo | |
| Astro | |
| Atlantis | |
| Aurora | |
| Balto | |
| Barcelona | |
| Barney | |
| Barracuda |
OlderNewer