Skip to content

Commit

Permalink
[DATALAD RUNCMD] Replace all 'seperator' with 'separator' -- also in …
Browse files Browse the repository at this point in the history
…css, scss, js

=== Do not change lines below ===
{
 "chain": [],
 "cmd": "git-sedi seperator separator",
 "exit": 0,
 "extra_inputs": [],
 "inputs": [],
 "outputs": [],
 "pwd": "."
}
^^^ Do not change lines above ^^^
  • Loading branch information
yarikoptic committed Apr 15, 2024
1 parent 5886755 commit c79bade
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions ckan/public/base/css/main-rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -13642,13 +13642,13 @@ td.diff_header {
.js .table-toggle-more .show-less {
display: none;
}
.js .table-toggle-more .toggle-seperator {
.js .table-toggle-more .toggle-separator {
display: table-row;
}
.js .table-toggle-more .toggle-seperator td {
.js .table-toggle-more .toggle-separator td {
height: 11px;
padding: 0;
background-image: url("../../../base/images/table-seperator.png");
background-image: url("../../../base/images/table-separator.png");
}
.js .table .toggle-show td {
background: none;
Expand All @@ -13660,7 +13660,7 @@ td.diff_header {
.js .table-toggle-less .show-more {
display: none;
}
.js .table-toggle-less .toggle-seperator {
.js .table-toggle-less .toggle-separator {
display: none;
}

Expand Down
8 changes: 4 additions & 4 deletions ckan/public/base/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -13642,13 +13642,13 @@ td.diff_header {
.js .table-toggle-more .show-less {
display: none;
}
.js .table-toggle-more .toggle-seperator {
.js .table-toggle-more .toggle-separator {
display: table-row;
}
.js .table-toggle-more .toggle-seperator td {
.js .table-toggle-more .toggle-separator td {
height: 11px;
padding: 0;
background-image: url("../../../base/images/table-seperator.png");
background-image: url("../../../base/images/table-separator.png");
}
.js .table .toggle-show td {
background: none;
Expand All @@ -13660,7 +13660,7 @@ td.diff_header {
.js .table-toggle-less .show-more {
display: none;
}
.js .table-toggle-less .toggle-seperator {
.js .table-toggle-less .toggle-separator {
display: none;
}

Expand Down
6 changes: 3 additions & 3 deletions ckan/public/base/javascript/modules/table-toggle-more.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ this.ckan.module('table-toggle-more', function($) {
'</td>',
'</tr>'
].join('\n');
var template_seperator = [
'<tr class="toggle-seperator">',
var template_separator = [
'<tr class="toggle-separator">',
'<td colspan="'+cols+'">',
'</td>',
'</tr>'
].join('\n');

var separator = $(template_seperator).insertAfter($('.toggle-more:last-child', this.el));
var separator = $(template_separator).insertAfter($('.toggle-more:last-child', this.el));
$(template_more).insertAfter(separator);

$('.show-more', this.el).on('click', this._onShowMore);
Expand Down
6 changes: 3 additions & 3 deletions ckan/public/base/scss/_tables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@
.show-less {
display: none;
}
.toggle-seperator {
.toggle-separator {
display: table-row;
td {
height: 11px;
padding: 0;
background-image: url("#{$imagePath}/table-seperator.png");
background-image: url("#{$imagePath}/table-separator.png");
}
}
}
Expand All @@ -63,7 +63,7 @@
.show-more {
display: none;
}
.toggle-seperator {
.toggle-separator {
display: none;
}
}
Expand Down

0 comments on commit c79bade

Please sign in to comment.