-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewrite JavaScript files according to linter specs
- Loading branch information
Showing
4 changed files
with
30 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,22 @@ | ||
// This is a manifest file that'll be compiled into application.js, which will include all the files | ||
// listed below. | ||
// 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. | ||
// 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. JavaScript code in this file should be added after the last require_* statement. | ||
// It's not advisable to add code directly here, but if you do, it'll appear | ||
// at the bottom of the compiled file. JavaScript code in this file should be | ||
// added after the last require_* statement. | ||
// | ||
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details | ||
// Read Sprockets README | ||
// (https://github.com/rails/sprockets#sprockets-directives) for details | ||
// about supported directives. | ||
// | ||
//= require jquery | ||
//= require tether | ||
//= require bootstrap-sprockets | ||
//= require jquery_ujs | ||
//= require lib/date_picker | ||
//= require turbolinks | ||
//= require_tree . | ||
// = require jquery | ||
// = require tether | ||
// = require bootstrap-sprockets | ||
// = require jquery_ujs | ||
// = require lib/date_picker | ||
// = require turbolinks | ||
// = require_tree . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
$(document).on('turbolinks:load', function() { | ||
$(".table-selectable tr").on('click', function(event){ | ||
$("tr").removeClass("table-success"); | ||
if (event.target.type !== "radio"){ | ||
$(":radio", this).trigger('click') | ||
$('.table-selectable tr').on('click', function(event) { | ||
$('tr').removeClass('table-success'); | ||
if (event.target.type !== 'radio') { | ||
$(':radio', this).trigger('click'); | ||
} | ||
$(this).addClass("table-success"); | ||
$(this).addClass('table-success'); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
// Action Cable provides the framework to deal with WebSockets in Rails. | ||
// You can generate new channels where WebSocket features live using the rails generate channel command. | ||
// You can generate new channels where WebSocket features live using the rails | ||
// generate channel command. | ||
// | ||
//= require action_cable | ||
//= require_self | ||
//= require_tree ./channels | ||
// = require action_cable | ||
// = require_self | ||
// = require_tree ./channels | ||
|
||
(function() { | ||
this.App || (this.App = {}); | ||
|
||
App.cable = ActionCable.createConsumer(); | ||
|
||
}).call(this); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
$(document).on("turbolinks:load", function(){ | ||
$(".jquery-datepicker").datetimepicker({ | ||
minDate: "0" | ||
$(document).on('turbolinks:load', function() { | ||
$('.jquery-datepicker').datetimepicker( { | ||
minDate: '0', | ||
}); | ||
}); |