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
| <html> | |
| <head> | |
| <title>Who Is Using Your Stage?</title> | |
| <style> | |
| * { | |
| transition: all .2s linear; | |
| } | |
| body { | |
| background-color: #333; | |
| margin: 0; |
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
| document.body.appendChild(document.createElement("style")).innerHTML = `.emoji-inner[style="background: url(https://dn-linedesigner.qbox.me/sheet_apple_64.png);background-position:65% 40%;background-size:4100%"]{visibility: hidden;}`; |
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 parse_git_dirty { | |
| [[ $(git status 2> /dev/null | tail -n1) != "nothing to commit, working directory clean" ]] && echo "*" | |
| } | |
| function parse_git_branch { | |
| git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* \(.*\)/[\1$(parse_git_dirty)]/" | |
| } | |
| function fpr () | |
| { | |
| sha1="$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
| diff --git a/src/ngRoute/route.js b/src/ngRoute/route.js | |
| index 4ecc932..2041300 100644 | |
| --- a/src/ngRoute/route.js | |
| +++ b/src/ngRoute/route.js | |
| @@ -580,7 +580,7 @@ function $RouteProvider(){ | |
| if (i === 0) { | |
| result.push(segment); | |
| } else { | |
| - var segmentMatch = segment.match(/(\w+)(.*)/); | |
| + var segmentMatch = segment.match(/(\w+)\??(.*)/); |
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
| jQuery(function ($) { | |
| var csrf_token = $('meta[name=csrf-token]').attr('content'), | |
| csrf_param = $('meta[name=csrf-param]').attr('content'); | |
| $.fn.extend({ | |
| triggerAndReturn: function (name, data) { | |
| var event = new $.Event(name); | |
| this.trigger(event, data); |