parsley/app/assets/javascripts/application.js

31 lines
1002 B
JavaScript
Raw Normal View History

2016-01-12 18:43:00 -06:00
// This is a manifest file that'll be compiled into application.js, which will include all the files
// listed below.
//
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
//
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// compiled file.
//
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
// about supported directives.
//
//= require jquery
//= require jquery_ujs
//= require turbolinks
//= require bootstrap-sprockets
2016-08-12 16:05:24 -05:00
//= require bootstrap-datepicker
2016-10-20 15:48:33 -05:00
//= require bootstrap-tagsinput
2016-01-13 17:10:43 -06:00
//= require cocoon
2016-01-14 15:22:15 -06:00
//= require typeahead
2016-01-18 12:58:54 -06:00
//= require autosize
2016-01-18 18:29:25 -06:00
//= require chosen.jquery
2016-01-31 00:00:32 -06:00
//= require underscore
2016-01-12 18:43:00 -06:00
//= require_tree .
2016-08-16 12:41:31 -05:00
// Setup star rating automagic
$(document).on("turbolinks:load", function() {
$("input[data-rating='true']").starRating();
});