Sha256: 3b5044db8db68edd600398889fd351930d81c415f427bac74f710d4568f6f731
Contents?: true
Size: 697 Bytes
Versions: 20
Compression:
Stored size: 697 Bytes
Contents
//= require blacklight/core //= require blacklight/checkbox_submit (function($) { //change form submit toggle to checkbox Blacklight.do_bookmark_toggle_behavior = function() { $(Blacklight.do_bookmark_toggle_behavior.selector).bl_checkbox_submit({ checked_label: "In Bookmarks", unchecked_label: "Bookmark", progress_label: "Saving...", //css_class is added to elements added, plus used for id base css_class: "toggle_bookmark" }); }; Blacklight.do_bookmark_toggle_behavior.selector = "form.bookmark_toggle"; $(document).ready(function() { Blacklight.do_bookmark_toggle_behavior(); }); })(jQuery);
Version data entries
20 entries across 20 versions & 1 rubygems