Replace tabs with spaces

This commit is contained in:
Felix Eckhofer 2014-02-24 11:29:50 +01:00
parent b3b4651e33
commit 18dd4eae1f

View file

@ -271,12 +271,12 @@ plugins.factory('userPlugins', function() {
*/
var asciinemaPlugin = new Plugin(function(message) {
var regexp = /http(s){0,1}:\/\/(www\.){0,1}asciinema.org\/a\/(\d+)/;
var match = message.match(regexp);
if (match) {
var regexp = /http(s){0,1}:\/\/(www\.){0,1}asciinema.org\/a\/(\d+)/;
var match = message.match(regexp);
if (match) {
var id = match[3];
return "<script type='text/javascript' src='https://asciinema.org/a/" + id + ".js' id='asciicast-" + id + "' async></script>";
}
}
});
asciinemaPlugin.name = "ascii cast";