#764: Fix #763 Superscript of tall expression

diff --git a/src/commands/math/commands.js b/src/commands/math/commands.js
index 53fb861..f361a51 100644
--- a/src/commands/math/commands.js
+++ b/src/commands/math/commands.js
@@ -328,6 +328,15 @@
     this.sup.downOutOf = insLeftOfMeUnlessAtEnd;
     super_.finalizeTree.call(this);
   };
+  _.reflow = function() {
+     var $block = this.jQ;//mq-supsub
+
+     var h = $block.prev().innerHeight() ;
+     h *= 0.6 ;
+
+     $block.css( 'vertical-align',  h + 'px' ) ;
+
+  } ;
 });
 
 var SummationNotation = P(MathCommand, function(_, super_) {