mirror of
https://github.com/go-gitea/gitea
synced 2025-07-13 22:17:20 +00:00
Fix #173
This commit is contained in:
@ -650,3 +650,7 @@ function initRepoSetting() {
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
String.prototype.endsWith = function(suffix) {
|
||||
return this.indexOf(suffix, this.length - suffix.length) !== -1;
|
||||
};
|
||||
|
Reference in New Issue
Block a user