summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2017-04-02 20:34:12 +0200
committerJules Laplace <jules@okfoc.us>2017-04-02 20:34:12 +0200
commitf8c49771075e1169468ff58fe73817c6a6325a5e (patch)
tree09666664b4431d107bece94c30b5d801b24fd44d
parent3b381a0f942aa445c67e3212cd3cf6c0130620c8 (diff)
wide if longer than 48 charas
-rwxr-xr-xStoneIsland/www/js/lib/products/ProductView.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/StoneIsland/www/js/lib/products/ProductView.js b/StoneIsland/www/js/lib/products/ProductView.js
index 802ee6b6..6a61be1b 100755
--- a/StoneIsland/www/js/lib/products/ProductView.js
+++ b/StoneIsland/www/js/lib/products/ProductView.js
@@ -167,7 +167,7 @@ var ProductView = ScrollableView.extend({
this.$price.html(price)
this.$body.html(body)
- this.$productHeader.toggleClass("wide", title.length > 30)
+ this.$productHeader.toggleClass("wide", title.length > 48)
var fits_large = !! this.fitLargeCodes[this.code]
app.product.$fit.toggle( fits_large )