Precompiled assets
This commit is contained in:
parent
9c5baee82e
commit
0effc83dff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
@ -0,0 +1,38 @@
|
||||
(function() {
|
||||
var visit;
|
||||
|
||||
$(document).on('turbolinks:load', function() {
|
||||
$('table.list td.view a').each(function() {
|
||||
return visit($(this));
|
||||
});
|
||||
return $('.pagination .next a').attr('data-remote', true).each(function() {
|
||||
return $(document).scroll((function(_this) {
|
||||
return function() {
|
||||
if ($(_this).visible(true, true)) {
|
||||
return $(_this).click().parents('.pagination').hide();
|
||||
}
|
||||
};
|
||||
})(this));
|
||||
});
|
||||
});
|
||||
|
||||
$(document).on('ajax:success', '.pagination .next a', function(event, data) {
|
||||
var next;
|
||||
$(this).parents('tfoot').prev().append($('tbody tr', data)).find('td.view a').each(function() {
|
||||
return visit($(this));
|
||||
});
|
||||
next = $('.pagination .next a', data).attr('href');
|
||||
if (next != null) {
|
||||
return $(this).attr('href', next).parents('.pagination').show();
|
||||
}
|
||||
});
|
||||
|
||||
visit = (function(_this) {
|
||||
return function(elt) {
|
||||
return elt.closest('tr').click(function() {
|
||||
return Turbolinks.visit(elt.attr('href'));
|
||||
});
|
||||
};
|
||||
})(this);
|
||||
|
||||
}).call(this);
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
.quantity{text-align:right !important;white-space:nowrap}table{clear:both;border-spacing:2px}table th{font-weight:normal}table th a:link,table th a:visited{color:#003;padding:0 0.6em}table.list tbody tr:nth-child(odd){background-color:#def}table.list tbody tr:nth-child(even){background-color:#eee}table.list td{padding:0.2em;text-align:left}table.list td.kind,table.list td.updated_at{text-align:center}html.js table.list tbody tr{cursor:pointer}html.js table.list tbody tr:hover{background-color:lightgrey}dl dt{clear:left;float:left;padding:0.2em 1em;min-width:12em;text-align:right}dl dd{padding:0.2em 1em;text-align:left}dl dd.quantity{padding-right:16em}dl dd h3{display:inline}ul.counters{text-align:center}ul.counters li{display:inline}ul.counters li a:link,ul.counters li a:visited{color:white;padding:0.4em 1em;display:inline-block;box-shadow:0 0 2px black;border-radius:0.4em;background-color:#258}.edit_link:link,.delete_link:link{display:none}
|
Binary file not shown.
@ -0,0 +1,24 @@
|
||||
(function() {
|
||||
$(document).on('turbolinks:load', function() {
|
||||
return tinyMCE.init({
|
||||
width: '100%',
|
||||
height: '40em',
|
||||
menubar: false,
|
||||
branding: false,
|
||||
language: 'fr_FR',
|
||||
selector: 'input.description',
|
||||
content_css: '/assets/application-d166db475e5c4ea1dd596d7609be81f95c7dd54dfe51f8710ae8b48cf722f84e.css',
|
||||
entity_encoding: 'raw',
|
||||
add_unload_trigger: true,
|
||||
browser_spellcheck: true,
|
||||
style_formats_autohide: true,
|
||||
toolbar: [' cut copy paste | undo redo | link image media charmap table | code visualblocks searchreplace', ' removeformat bold italic strikethrough superscript subscript | bullist numlist outdent indent | alignleft aligncenter alignright alignjustify alignnone'],
|
||||
plugins: 'lists advlist autolink link image charmap paste print preview table fullscreen searchreplace media insertdatetime visualblocks wordcount code'
|
||||
});
|
||||
});
|
||||
|
||||
$(document).on('turbolinks:before-cache', function() {
|
||||
return tinymce.remove();
|
||||
});
|
||||
|
||||
}).call(this);
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user