Sha256: 439549abfae1afe2c0bab7e105e4dd0b1632ab9dd9eda9e65a3b31a210c16440
Contents?: true
Size: 1.13 KB
Versions: 1
Compression:
Stored size: 1.13 KB
Contents
// This is a manifest file that'll be compiled into including all the files listed below. // Add new JavaScript/Coffee code in separate files in this directory and they'll automatically // be included in the compiled file accessible from http://example.com/assets/application.js // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the // the compiled file. // //= require jquery //= require jquery_ujs //= require_tree . (function($){ $(document).ready(function() { $('a[data-colorbox="true"]').live('click', function(e) { e.preventDefault(); $.colorbox( { height: $(this).data("colorbox-height") || false, width: $(this).data("colorbox-width") || false, iframe: $(this).data("colorbox-iframe") || false, photo: $(this).data("colorbox-photo") || false, innerHeight: $(this).data("colorbox-innerheight") || false, innerWidth: $(this).data("colorbox-innerwidth") || false, href: $(this).attr('href'), opacity: 0.5 }); }); }); }) (jQuery);
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
colorbox-rails-0.0.9 | app/assets/javascripts/colorbox-rails/colorbox-links.js |