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
| body .container { | |
| padding: 0 15px; | |
| } | |
| body .container { | |
| width: 100%; | |
| } | |
| body .container .repo-container, body .new-issue-form { | |
| display: flex; |
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
| if (!Array.prototype.mergeSort) { | |
| Array.prototype.mergeSort = function(predicate) { | |
| if (this.length < 2) return this | |
| var middle = Math.round(this.length / 2), | |
| left = this.slice(0, middle).mergeSort(predicate), | |
| right = this.slice(middle, this.length).mergeSort(predicate), | |
| merged = [], leftCursor = 0, rightCursor = 0, | |
| predicate = predicate || function(a, b) { return a <= b ? -1 : 1 } |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>fileTypes</key> | |
| <array> | |
| <string>sql</string> | |
| <string>pgsql</string> | |
| <string>psql</string> | |
| </array> |
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
| (function(factory, global) { | |
| if (global.define && global.define.amd) { | |
| global.define(['ko'], factory); | |
| } else { | |
| factory(global.ko); | |
| } | |
| })(function(ko) { | |
| var deepObservifyArray = function(arr, deep) { | |
| for (var i = 0, len = arr.length; i < len; i++) { |
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
| (function(factory, global) { | |
| if (global.define && global.define.amd) { | |
| global.define(['ko'], factory); | |
| } else { | |
| global.signals = factory(global.ko); | |
| } | |
| })(function(ko) { | |
| return { | |
| Signal: function() { | |
| var sub = new ko.subscribable(); |