mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-26 07:58: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
|
@ -44,7 +44,7 @@ var InteractiveRebaseView = BaseView.extend({
|
|||
|
||||
// get our ordering
|
||||
var uiOrder = [];
|
||||
this.$('ul#rebaseEntries li').each(function(i, obj) {
|
||||
this.$('ul.rebaseEntries li').each(function(i, obj) {
|
||||
uiOrder.push(obj.id);
|
||||
});
|
||||
|
||||
|
@ -72,7 +72,7 @@ var InteractiveRebaseView = BaseView.extend({
|
|||
$(destination).append(this.el);
|
||||
|
||||
// also render each entry
|
||||
var listHolder = this.$('ul#rebaseEntries');
|
||||
var listHolder = this.$('ul.rebaseEntries');
|
||||
this.rebaseEntries.each(function(entry) {
|
||||
new RebaseEntryView({
|
||||
el: listHolder,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue