Skip to content

Commit

Permalink
Upgraded to latest recline
Browse files Browse the repository at this point in the history
  • Loading branch information
djw committed May 15, 2013
1 parent 12e989d commit af89edb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions creator/index.html
Expand Up @@ -51,8 +51,8 @@ <h1>A little help with creating timelines ...</h1>

<!-- 3rd party JS libraries -->
<script type="text/javascript" src="../vendor/recline/vendor/jquery/1.7.1/jquery.js"></script>
<script type="text/javascript" src="../vendor/recline/vendor/underscore/1.4.2/underscore.js"></script>
<script type="text/javascript" src="../vendor/recline/vendor/backbone/0.9.2/backbone.js"></script>
<script type="text/javascript" src="../vendor/recline/vendor/underscore/1.4.4/underscore.js"></script>
<script type="text/javascript" src="../vendor/recline/vendor/backbone/1.0.0/backbone.js"></script>
<script type="text/javascript" src="../vendor/backbone.localStorage.js"></script>
<script type="text/javascript" src="../vendor/recline/src/backend.csv.js"></script>
<script src="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/js/bootstrap.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion js/view.js
Expand Up @@ -124,7 +124,7 @@ var TimelinerView = Backbone.View.extend({

this.map.geoJsonLayerOptions.pointToLayer = function(feature, latlng) {
var marker = new L.Marker(latlng);
var record = this.model.records.getByCid(feature.properties.cid);
var record = this.model.records.get(feature.properties.cid);
var recordAttr = record.toJSON();
marker.bindLabel(recordAttr.title);

Expand Down
2 changes: 1 addition & 1 deletion vendor/recline
Submodule recline updated from 474b45 to 8f0fe6
6 changes: 3 additions & 3 deletions view/index.html
Expand Up @@ -92,10 +92,10 @@ <h3>Embed Instructions</h3>
</div>
<!-- 3rd party JS libraries -->
<script type="text/javascript" src="../vendor/recline/vendor/jquery/1.7.1/jquery.js"></script>
<script type="text/javascript" src="../vendor/recline/vendor/underscore/1.4.2/underscore.js"></script>
<script type="text/javascript" src="../vendor/recline/vendor/underscore/1.4.4/underscore.js"></script>
<script type="text/javascript" src="../vendor/recline/vendor/underscore.deferred/0.4.0/underscore.deferred.js"></script>
<script type="text/javascript" src="../vendor/recline/vendor/backbone/0.9.2/backbone.js"></script>
<script type="text/javascript" src="../vendor/recline/vendor/moment/1.6.2/moment.js"></script>
<script type="text/javascript" src="../vendor/recline/vendor/backbone/1.0.0/backbone.js"></script>
<script type="text/javascript" src="../vendor/recline/vendor/moment/2.0.0/moment.js"></script>
<script type="text/javascript" src="../vendor/recline/vendor/mustache/0.5.0-dev/mustache.js"></script>
<script type="text/javascript" src="../vendor/recline/vendor/bootstrap/2.0.2/bootstrap.js"></script>
<script type="text/javascript" src="../vendor/recline/vendor/leaflet/0.4.4/leaflet.js"></script>
Expand Down

0 comments on commit af89edb

Please sign in to comment.