From dedc531adc03590c020e2ad804b14fb8304e9825 Mon Sep 17 00:00:00 2001 From: Fredrick Brennan Date: Wed, 30 Apr 2014 10:21:02 -0400 Subject: [PATCH] Fix inline expanding issue with new styles --- js/inline-expanding.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/inline-expanding.js b/js/inline-expanding.js index 4accafe8..04d9298f 100644 --- a/js/inline-expanding.js +++ b/js/inline-expanding.js @@ -25,6 +25,7 @@ onready(function(){ if (e.which == 2 || e.metaKey) return true; if (!this.dataset.src) { + this.parentNode.removeAttribute('style'); this.dataset.expanded = 'true'; this.dataset.src= this.childNodes[0].src; this.dataset.width = this.childNodes[0].style.width; @@ -39,6 +40,7 @@ onready(function(){ delete this.style.filter; } } else { + this.parentNode.style.width = (parseInt(this.dataset.width)+40)+'px'; this.childNodes[0].src = this.dataset.src; this.childNodes[0].style.width = this.dataset.width; this.childNodes[0].style.height = this.dataset.height;