mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-26 16:08:34 +02:00
got rid of ids
This commit is contained in:
parent
46e71d9f49
commit
fa91c18567
4 changed files with 10 additions and 10 deletions
|
@ -8479,7 +8479,7 @@ var InteractiveRebaseView = BaseView.extend({
|
||||||
|
|
||||||
// get our ordering
|
// get our ordering
|
||||||
var uiOrder = [];
|
var uiOrder = [];
|
||||||
this.$('ul#rebaseEntries li').each(function(i, obj) {
|
this.$('ul.rebaseEntries li').each(function(i, obj) {
|
||||||
uiOrder.push(obj.id);
|
uiOrder.push(obj.id);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -8507,7 +8507,7 @@ var InteractiveRebaseView = BaseView.extend({
|
||||||
$(destination).append(this.el);
|
$(destination).append(this.el);
|
||||||
|
|
||||||
// also render each entry
|
// also render each entry
|
||||||
var listHolder = this.$('ul#rebaseEntries');
|
var listHolder = this.$('ul.rebaseEntries');
|
||||||
this.rebaseEntries.each(function(entry) {
|
this.rebaseEntries.each(function(entry) {
|
||||||
new RebaseEntryView({
|
new RebaseEntryView({
|
||||||
el: listHolder,
|
el: listHolder,
|
||||||
|
@ -14819,7 +14819,7 @@ var InteractiveRebaseView = BaseView.extend({
|
||||||
|
|
||||||
// get our ordering
|
// get our ordering
|
||||||
var uiOrder = [];
|
var uiOrder = [];
|
||||||
this.$('ul#rebaseEntries li').each(function(i, obj) {
|
this.$('ul.rebaseEntries li').each(function(i, obj) {
|
||||||
uiOrder.push(obj.id);
|
uiOrder.push(obj.id);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -14847,7 +14847,7 @@ var InteractiveRebaseView = BaseView.extend({
|
||||||
$(destination).append(this.el);
|
$(destination).append(this.el);
|
||||||
|
|
||||||
// also render each entry
|
// also render each entry
|
||||||
var listHolder = this.$('ul#rebaseEntries');
|
var listHolder = this.$('ul.rebaseEntries');
|
||||||
this.rebaseEntries.each(function(entry) {
|
this.rebaseEntries.each(function(entry) {
|
||||||
new RebaseEntryView({
|
new RebaseEntryView({
|
||||||
el: listHolder,
|
el: listHolder,
|
||||||
|
|
|
@ -148,8 +148,8 @@
|
||||||
<p class="helperText">
|
<p class="helperText">
|
||||||
(Drag and drop to re-order. Toggle the "pick" button to omit or re-add a commit)
|
(Drag and drop to re-order. Toggle the "pick" button to omit or re-add a commit)
|
||||||
</p>
|
</p>
|
||||||
<div id="entryHolders">
|
<div class="entryHolders">
|
||||||
<ul id="rebaseEntries">
|
<ul class="rebaseEntries">
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -44,7 +44,7 @@ var InteractiveRebaseView = BaseView.extend({
|
||||||
|
|
||||||
// get our ordering
|
// get our ordering
|
||||||
var uiOrder = [];
|
var uiOrder = [];
|
||||||
this.$('ul#rebaseEntries li').each(function(i, obj) {
|
this.$('ul.rebaseEntries li').each(function(i, obj) {
|
||||||
uiOrder.push(obj.id);
|
uiOrder.push(obj.id);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -72,7 +72,7 @@ var InteractiveRebaseView = BaseView.extend({
|
||||||
$(destination).append(this.el);
|
$(destination).append(this.el);
|
||||||
|
|
||||||
// also render each entry
|
// also render each entry
|
||||||
var listHolder = this.$('ul#rebaseEntries');
|
var listHolder = this.$('ul.rebaseEntries');
|
||||||
this.rebaseEntries.each(function(entry) {
|
this.rebaseEntries.each(function(entry) {
|
||||||
new RebaseEntryView({
|
new RebaseEntryView({
|
||||||
el: listHolder,
|
el: listHolder,
|
||||||
|
|
|
@ -363,13 +363,13 @@ li.rebaseEntry,
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.iRebaseDialog div#entryHolders {
|
.iRebaseDialog div.entryHolders {
|
||||||
width: 300px;
|
width: 300px;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.iRebaseDialog div#entryHolders ul#rebaseEntries {
|
.iRebaseDialog div.entryHolders ul.rebaseEntries {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
-webkit-padding-start: 0;
|
-webkit-padding-start: 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue