Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
feeds
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
drupal.org
feeds
Commits
ecb63825
Commit
ecb63825
authored
15 years ago
by
Alex Barth
Browse files
Options
Downloads
Patches
Plain Diff
#717168 nicholasThompson: Fix feeds UI JS doesn't select labels correctly.
parent
7e9aa31b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.txt
+1
-0
1 addition, 0 deletions
CHANGELOG.txt
feeds_ui/feeds_ui.js
+1
-1
1 addition, 1 deletion
feeds_ui/feeds_ui.js
with
2 additions
and
1 deletion
CHANGELOG.txt
+
1
−
0
View file @
ecb63825
...
...
@@ -3,6 +3,7 @@
Feeds 6.x 1.0 xxxxx xx, xxxx-xx-xx
----------------------------------
- #717168 nicholasThompson: Fix feeds UI JS doesn't select labels correctly.
- #708228 Scott Reynolds, alex_b: Break FeedsImportBatch into separate classes.
NOTE: FeedsFetcher implementations cannot use FeedsImportBatch directly
anymore but most provide their own implementation of FeedsImportBatch. See
...
...
This diff is collapsed.
Click to expand it.
feeds_ui/feeds_ui.js
+
1
−
1
View file @
ecb63825
...
...
@@ -53,7 +53,7 @@ Drupal.behaviors.feeds = function() {
// Replace checkbox with .feeds-ui-checkbox-link class with a link.
$
(
'
.feeds-ui-checkbox-link:not(.processed)
'
).
each
(
function
(
i
)
{
$
(
this
).
addClass
(
'
processed
'
).
after
(
'
<a href="#" onclick="return false;" class="feeds-ui-trigger-remove">
'
+
$
(
this
).
children
(
'
label
'
).
text
()
+
'
</a>
'
'
<a href="#" onclick="return false;" class="feeds-ui-trigger-remove">
'
+
$
(
'
label
'
,
this
).
text
()
+
'
</a>
'
).
hide
();
});
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment