~replaceafill/ubuntu/trusty/schooltool/2.8

« back to all changes in this revision

Viewing changes to src/schooltool/skin/flourish/resources/gradebook.js

  • Committer: Gediminas Paulauskas
  • Date: 2013-10-10 16:53:33 UTC
  • mfrom: (1.1.27)
  • Revision ID: menesis@pov.lt-20131010165333-knsk88i2od7b8o70
Tags: 1:2.6.0-0ubuntu1
* New upstream release.
* debian/redis.conf: save redis databases less often.

Show diffs side-by-side

added added

removed removed

Lines of Context:
182
182
    var popup_links = form.find('#students-part').find('thead').find('.popup_link');
183
183
    popup_links.each(function(index, element) {
184
184
        var link = $(element);
 
185
        var column_id = link.parent().attr('id');
 
186
        var attrs = {'column_id': column_id};
185
187
        var url = buildURL(base_url, 'name_popup_menu');
186
 
        loadPopup(link, url, {}, false);
 
188
        loadPopup(link, url, attrs, false);
187
189
    });
188
190
}
189
191