This commit is contained in:
Peter Cottle 2013-05-13 19:41:47 -07:00
parent dd9f05eaa3
commit 50a9eec959
3 changed files with 10 additions and 4 deletions

View file

@ -8610,7 +8610,9 @@ var Ref = Backbone.Model.extend({
var Branch = Ref.extend({
defaults: {
visBranch: null
visBranch: null,
isOrigin: false,
origin: null
},
initialize: function() {
@ -24046,7 +24048,9 @@ var Ref = Backbone.Model.extend({
var Branch = Ref.extend({
defaults: {
visBranch: null
visBranch: null,
isOrigin: false,
origin: null
},
initialize: function() {

View file

@ -1648,7 +1648,9 @@ var Ref = Backbone.Model.extend({
var Branch = Ref.extend({
defaults: {
visBranch: null
visBranch: null,
isOrigin: false,
origin: null
},
initialize: function() {

View file

@ -15,7 +15,7 @@ Origin things:
~~~~~~~~~~~~~~~~~~~~~~~~~~
[ ] setup remote model, for now it just has:
-- a name
-- a URL (default for now)
-- a URL (default for now)?
-- points to a completely new git engine instance to interact with
[ ] Setup branch model to include:
-- is remote (custom getter)