Collapse file diffs for files with a certain exentions. The list of extensions is on the end of gist.
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
| var toString = Object.prototype.toString, | |
| regex = /\[object (.*?)\]/, | |
| type = function (o) { | |
| var match, typeMatch; | |
| // Special case for DOM elements | |
| if (o && o.nodeType === 1) { | |
| return 'element'; | |
| } |
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
| angular | |
| .module('$q-spread', []) | |
| .config(function ($provide) { | |
| $provide.decorator('$q', function ($delegate) { | |
| var originalAll = $delegate.all; | |
| $delegate.all = function (promises) { | |
| var promise = originalAll(promises); |
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
| .bubble.thread { | |
| opacity: 0.65; | |
| } | |
| .bubble.green { | |
| border-color: #9554D2 !important; | |
| color: #9554D2 !important; | |
| fill: #9554D2 !important; | |
| } |
OlderNewer