From 0fdf064904a05cce04e6bf9dcd88450f126a6a9d Mon Sep 17 00:00:00 2001 From: calzoneman Date: Thu, 27 Feb 2014 17:26:49 -0600 Subject: [PATCH] Fix linewrapping on profile-box --- templates/account-profile.jade | 2 +- www/js/util.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/account-profile.jade b/templates/account-profile.jade index 2ae096f6..c0dbed7f 100644 --- a/templates/account-profile.jade +++ b/templates/account-profile.jade @@ -26,7 +26,7 @@ html(lang="en") .alert.alert-danger.center.messagebox strong Profile Error p= profileError - .profile-box(style="position: inherit; z-index: auto;") + .profile-box.linewrap(style="position: inherit; z-index: auto;") img.profile-image(src=profileImage) strong= loginName p= profileText diff --git a/www/js/util.js b/www/js/util.js index 8fa416c8..6e5ecae2 100644 --- a/www/js/util.js +++ b/www/js/util.js @@ -105,7 +105,7 @@ function formatUserlistItem(div) { var top = ev.clientY + 5// - name.position().top; var left = ev.clientX; profile = $("
") - .addClass("profile-box") + .addClass("profile-box linewrap") .css("top", top + "px") .css("left", left + "px") .appendTo(div);