git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Unexpected diff is shown with -w -b options in effect
@ 2016-07-11 11:42 KES
  2016-07-11 12:58 ` Johannes Schindelin
  0 siblings, 1 reply; 2+ messages in thread
From: KES @ 2016-07-11 11:42 UTC (permalink / raw)
  To: git

Hi

For this diff
diff --git a/app/public/v2/index.html b/app/public/v2/index.html
index f73ba73..3af0c64 100644
--- a/app/public/v2/index.html
+++ b/app/public/v2/index.html
@@ -21,11 +21,15 @@
 </head>
 <body>
 <div id="media-width-detection-element"></div>
-<div id="rowTools" class="eRowTools btn-group btn-group-sm">
-	<div    type="button"              class="eBtnMov btn btn-default">MOV</div>
-	<button type="button" class="eBtnAdd btn btn-default" onclick="rowTools_add_click( this )">ADD</button>
-	<button type="button" class="eBtnDel btn btn-default" onclick="rowTools_del_click( this )">DEL</button>
-	<img src="img/add.png"/>
+<div id="rowTools" class="eRowTools">
+	<div class="eRow_Separator btn-group btn-group-sm">
+		<div    type="button" class="eBtnMov btn btn-default">MOV</div>
+		<button type="button" class="eBtnAdd btn btn-default" onclick="rowTools_add_click( this )">ADD</button>
+		<button type="button" class="eBtnDel btn btn-default" onclick="rowTools_del_click( this )">DEL</button>
+	</div>
+	<div class="eRow_ColAdd">
+		<img src="img/add.png"/>
+	</div>
 </div>
 <div id="colTools" class="eColTools"></div>
 <div class="container-fluid">

I see next:
diff --git a/app/public/v2/index.html b/app/public/v2/index.html
index f73ba73..d415c2d 100644
--- a/app/public/v2/index.html
+++ b/app/public/v2/index.html
@@ -21,12 +21,16 @@
 </head>
 <body>
 <div id="media-width-detection-element"></div>
-<div id="rowTools" class="eRowTools btn-group btn-group-sm">
+<div id="rowTools" class="eRowTools">
+    <div class="eRow_Separator btn-group btn-group-sm">
         <div    type="button" class="eBtnMov btn btn-default">MOV</div>
         <button type="button" class="eBtnAdd btn btn-default" onclick="rowTools_add_click( this )">
         <button type="button" class="eBtnDel btn btn-default" onclick="rowTools_del_click( this )">
+    </div>
+    <div class="eRow_ColAdd">
         <img src="img/add.png"/>
     </div>
+</div>                         <<<<<<<<<<<<<<<<<<<<<<<< IS NOT EXPECTED
 <div id="colTools" class="eColTools"></div>
 <div class="container-fluid">
 <div class="row">

But I expect to see:
diff --git a/app/public/v2/index.html b/app/public/v2/index.html
index f73ba73..d415c2d 100644
--- a/app/public/v2/index.html
+++ b/app/public/v2/index.html
@@ -21,12 +21,16 @@
 </head>
 <body>
 <div id="media-width-detection-element"></div>
-<div id="rowTools" class="eRowTools btn-group btn-group-sm">
+<div id="rowTools" class="eRowTools">
+    <div class="eRow_Separator btn-group btn-group-sm">
         <div    type="button" class="eBtnMov btn btn-default">MOV</div>
         <button type="button" class="eBtnAdd btn btn-default" onclick="rowTools_add_click( this )">
         <button type="button" class="eBtnDel btn btn-default" onclick="rowTools_del_click( this )">
+    </div>
+    <div class="eRow_ColAdd">
         <img src="img/add.png"/>
+     </div>                         <<<<<<<<<<<<<<<<<<<<<< EXPECT THIS
</div>
 <div id="colTools" class="eColTools"></div>
 <div class="container-fluid">
 <div class="row">


This seems to me a bug or should I apply some extra options to get expected behaviour?

PS$ git --version
git version 2.8.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-07-11 12:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-11 11:42 Unexpected diff is shown with -w -b options in effect KES
2016-07-11 12:58 ` Johannes Schindelin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).