aboutsummaryrefslogtreecommitdiff
path: root/wqflask/wqflask/static/new/javascript/get_traits_from_collection.js
blob: 9ef31088024f49454c973c50243e22e1163de6c7 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Generated by CoffeeScript 1.6.1
(function() {
  var collection_hover;

  console.log("before get_traits_from_collection");

  collection_hover = function() {
    var this_collection_url;
    console.log("Hovering over:", $(this));
    this_collection_url = $(this).find('.collection_name').prop("href");
    this_collection_url += "&json";
    return console.log("this_collection_url", this_collection_url);
  };

  $(function() {
    console.log("inside get_traits_from_collection");
    return $(document).on("mouseover", ".collection_line", collection_hover);
  });

}).call(this);