2011-11-21 21:36:42 +00:00
|
|
|
// 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.
|
|
|
|
//
|
2013-10-20 15:57:50 +00:00
|
|
|
//= require base
|
2011-11-21 21:36:42 +00:00
|
|
|
//= require jquery_ujs
|
2012-11-19 19:25:40 +00:00
|
|
|
//= require jquery.timeago
|
2013-11-17 15:49:46 +00:00
|
|
|
//= require bootstrap
|
2012-08-25 12:24:53 +00:00
|
|
|
|
|
|
|
$(function() {
|
|
|
|
$('abbr.timeago').timeago();
|
2013-06-13 09:45:00 +00:00
|
|
|
|
|
|
|
$("input[data-behavior=auto-select]").click(function() {
|
|
|
|
this.select();
|
|
|
|
});
|
2013-10-20 17:07:40 +00:00
|
|
|
|
2014-10-17 15:28:22 +00:00
|
|
|
$('input[data-behavior=focus]:first').focus().select();
|
2013-11-18 12:01:35 +00:00
|
|
|
|
2014-12-16 20:20:47 +00:00
|
|
|
$('[data-toggle="popover"]').popover({ html: true });
|
2015-04-26 15:55:38 +00:00
|
|
|
|
|
|
|
if ($('meta[name=referrer][content=none]').length > 0) {
|
|
|
|
$('a[href*=http]').attr('rel', 'noreferrer');
|
|
|
|
}
|
2012-08-25 12:24:53 +00:00
|
|
|
});
|