<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/app/assets/javascripts/single_file_diff.js, branch snake-case</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>Replace $.get in single file diff with axios</title>
<updated>2018-01-30T12:19:50+00:00</updated>
<author>
<name>Clement Ho</name>
<email>clemmakesapps@gmail.com</email>
</author>
<published>2018-01-30T12:19:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=dfc626059b33a20161cf4f33950188e9e632f3a6'/>
<id>dfc626059b33a20161cf4f33950188e9e632f3a6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Export old code into es6 modules</title>
<updated>2017-12-13T09:26:44+00:00</updated>
<author>
<name>Filipa Lacerda</name>
<email>filipa@gitlab.com</email>
</author>
<published>2017-12-13T09:26:44+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=aa90e8ea5b025dc5de5887b2694e25745bf97e48'/>
<id>aa90e8ea5b025dc5de5887b2694e25745bf97e48</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Commenting on image diffs</title>
<updated>2017-10-07T04:25:17+00:00</updated>
<author>
<name>Felipe Artur</name>
<email>fcardozo@gitlab.com</email>
</author>
<published>2017-10-07T04:25:17+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b54203f0ada8f7ad6d24437b6f5f46ebf43f8695'/>
<id>b54203f0ada8f7ad6d24437b6f5f46ebf43f8695</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor SingleFileDiff class to ES module syntax</title>
<updated>2017-07-06T18:39:28+00:00</updated>
<author>
<name>Mike Greiling</name>
<email>mike@pixelcog.com</email>
</author>
<published>2017-07-06T18:39:28+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=5c52ca9a0cc32794b7bb87f1a106bd8d4c287ff9'/>
<id>5c52ca9a0cc32794b7bb87f1a106bd8d4c287ff9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor single_file_diff.js to use ES class syntax</title>
<updated>2017-07-06T15:10:00+00:00</updated>
<author>
<name>Mike Greiling</name>
<email>mike@pixelcog.com</email>
</author>
<published>2017-06-30T21:27:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=dfe7b143475f07d75e2336a397d2817db26b1709'/>
<id>dfe7b143475f07d75e2336a397d2817db26b1709</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove IIFEs around several javascript classes</title>
<updated>2017-07-05T17:20:41+00:00</updated>
<author>
<name>Mike Greiling</name>
<email>mgreiling@gitlab.com</email>
</author>
<published>2017-07-05T17:20:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c06dad62e1004eb5b4f2251a233f740d3fa2a5c2'/>
<id>c06dad62e1004eb5b4f2251a233f740d3fa2a5c2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Render add-diff-note button with server.</title>
<updated>2017-06-29T16:50:45+00:00</updated>
<author>
<name>Bryce Johnson</name>
<email>bryce@gitlab.com</email>
</author>
<published>2017-06-12T18:43:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=81e9c2842574b10d694a8e29665c77fde7fd6ae5'/>
<id>81e9c2842574b10d694a8e29665c77fde7fd6ae5</id>
<content type='text'>
This commit moves the rendering of the button back to the server, and
shows/hides it using opacity rather than display. It also removes the
transform applied to the button on hover (scale). Previously, both of these
factors automatically triggered a reflow, which creates a performance
bottleneck on pages with larger DOM size.

MR: !12103
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit moves the rendering of the button back to the server, and
shows/hides it using opacity rather than display. It also removes the
transform applied to the button on hover (scale). Previously, both of these
factors automatically triggered a reflow, which creates a performance
bottleneck on pages with larger DOM size.

MR: !12103
</pre>
</div>
</content>
</entry>
<entry>
<title>Clean up diff rendering</title>
<updated>2017-05-23T20:37:05+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@selenight.nl</email>
</author>
<published>2017-05-15T17:18:19+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=7e09a9b7dcef125af2e775869754a3327935b12d'/>
<id>7e09a9b7dcef125af2e775869754a3327935b12d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remove bind polyfill from single_file_diff.js</title>
<updated>2017-05-08T22:40:20+00:00</updated>
<author>
<name>Mike Greiling</name>
<email>mike@pixelcog.com</email>
</author>
<published>2017-05-08T19:12:16+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=e4e95adf484d7cc650d14814137e080af51fa828'/>
<id>e4e95adf484d7cc650d14814137e080af51fa828</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>replace implicit this == window with explicit binding</title>
<updated>2017-02-17T22:58:32+00:00</updated>
<author>
<name>Mike Greiling</name>
<email>mike@pixelcog.com</email>
</author>
<published>2017-02-10T06:50:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=0f31c5a92b314baddd4cad01c328bdf1736fc7b4'/>
<id>0f31c5a92b314baddd4cad01c328bdf1736fc7b4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
