7c722a337cc182a11700ad8858984594e0deb8f7 larrym Mon Mar 19 19:52:49 2012 -0700 remove a console.log diff --git src/hg/js/hgTracks.js src/hg/js/hgTracks.js index f7619cc..4085830 100644 --- src/hg/js/hgTracks.js +++ src/hg/js/hgTracks.js @@ -293,31 +293,30 @@ init: function (trackName) { // Set up so that they can drag out to define a new item on a makeItems track. var img = $("#img_data_" + trackName); if(img != undefined && img.length != 0) { var imgHeight = imageV2.imgTbl.height(); jQuery(img.imgAreaSelect( { selectionColor: 'green', outerColor: '', minHeight: imgHeight, maxHeight: imgHeight, onSelectEnd: makeItemsByDrag.end, autoHide: true, movable: false})); } }, load: function () { - console.log(this); for (var id in hgTracks.trackDb) { var rec = hgTracks.trackDb[id]; if(rec.type != null && rec.type.indexOf("makeItems") == 0) { this.init(id); } } } } /////////////////// ///// mouse ///// /////////////////// var mouse = { savedOffset: {x:0, y:0},