From 3ff53566e99480906c0d2130b939428d779122f7 Mon Sep 17 00:00:00 2001 From: rolux Date: Wed, 10 Jul 2013 13:22:06 +0000 Subject: [PATCH] fix #1260 (text in item label should be selectable) --- static/js/pandora/toolbar.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/static/js/pandora/toolbar.js b/static/js/pandora/toolbar.js index c2f5fee5b..908a9c0d2 100644 --- a/static/js/pandora/toolbar.js +++ b/static/js/pandora/toolbar.js @@ -31,7 +31,10 @@ pandora.ui.toolbar = function() { left: getListTitleLeft() + 'px', top: '4px', right: (ui._list ? 324 : 310) + 'px', - width: 'auto' + width: 'auto', + MozUserSelect: 'text', + OUserSelect: 'text', + WebkitUserSelect: 'text' }) : pandora.$ui.itemTitle = Ox.Label({ textAlign: 'center' @@ -41,7 +44,10 @@ pandora.ui.toolbar = function() { left: '236px', top: '4px', right: (ui._list ? 324 : 310) + 'px', - width: 'auto' + width: 'auto', + MozUserSelect: 'text', + OUserSelect: 'text', + WebkitUserSelect: 'text' }) .hide() );