summaryrefslogtreecommitdiff
path: root/static/js/pichat2.js
diff options
context:
space:
mode:
authoryo momma <shutup@oops.wtf>2026-02-03 22:01:05 +0000
committeryo momma <shutup@oops.wtf>2026-02-03 22:01:05 +0000
commit36202d8defb26f87264914f60c39c768cff3729e (patch)
treea57224b8bba7fc7a7c65a8c3b0408847e9043a3d /static/js/pichat2.js
parentd220d620e425ee6128c83229467e3ccac8f3ebf2 (diff)
Hump.fm: remove dump.fm branding
Diffstat (limited to 'static/js/pichat2.js')
-rwxr-xr-xstatic/js/pichat2.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/static/js/pichat2.js b/static/js/pichat2.js
index 30fb055..e6078eb 100755
--- a/static/js/pichat2.js
+++ b/static/js/pichat2.js
@@ -199,7 +199,7 @@ var SHA1 = {
"bit_rol": function(num, cnt) { return (num << cnt) | (num >>> (32 - cnt)) }
}
// The root domain is used so that subdomains don't result in
-// spurious extra urls (e.g. both dump.fm/nick and sub.dump.fm/nick)
+// spurious extra urls (e.g. both hump.fm/nick and sub.hump.fm/nick)
window.RootDomain = location.href.match(/http:\/\/(\w)+\./)
? '/' : '/';
@@ -231,7 +231,7 @@ window.Anim = {
window.Preferences = {
- "Domain": '.dump.fm',
+ "Domain": '.hump.fm',
"getProperty": function(prop, defaultValue) {
var value = $.cookie(prop);
@@ -424,7 +424,7 @@ function getMessageInfo(e){
if (!content.length) content = message.find(".content")
var rawContent = content.html()
var img = content.find("img").attr("src")
- var via = "via " + nick + " on dump.fm"
+ var via = "via " + nick + " on hump.fm"
return {"nick": nick, "id": id, "link": encodeURIComponent(link),
"content": rawContent, "img": encodeURIComponent(img),
"via": encodeURIComponent(via)}
@@ -1640,7 +1640,7 @@ function setupUploadAvatar(elementId) {
} else if (r == 'NOT_LOGGED_IN') {
location.reload();
} else if (r == 'INVALID_IMAGE') {
- alert("Sorry, dump.fm can't deal with your image. Pick another :(");
+ alert("Sorry, hump.fm can't deal with your image. Pick another :(");
return;
} else if (r.match(/FILE_TOO_BIG/)) {
var maxSize = r.split(" ")[1] / 1024;
@@ -1693,7 +1693,7 @@ Search = {
$('#search-results-images a').live('hover', Search.resultsHover)
var input = Search.$input = $("#search-query")
- var label = "search dump.fm"
+ var label = "search hump.fm"
Search.$container = $("#search-results-images")
input.val(label)