Skip to content

Commit

Permalink
label is now id
Browse files Browse the repository at this point in the history
  • Loading branch information
hojberg committed Aug 28, 2011
1 parent aef1dac commit 498f390
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion public/js/app/models/build.js
Expand Up @@ -8,7 +8,8 @@ var Build = Backbone.Model.extend({
},

setLabel: function () {
var label = new Date(this.get("receivedAt")).getTime();
// var label = new Date(this.get("receivedAt")).getTime();
var label = this.get("_id");
this.set({"label": label}, {silent: true});
},

Expand Down

0 comments on commit 498f390

Please sign in to comment.