Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mastodon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Pierre Boudes
mastodon
Commits
eb2425b5
Unverified
Commit
eb2425b5
authored
7 years ago
by
Eugen Rochko
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Hide loading bar on status interactions (#6774)
parent
79d3a855
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/javascript/mastodon/actions/interactions.js
+18
-0
18 additions, 0 deletions
app/javascript/mastodon/actions/interactions.js
with
18 additions
and
0 deletions
app/javascript/mastodon/actions/interactions.js
+
18
−
0
View file @
eb2425b5
...
...
@@ -62,6 +62,7 @@ export function reblogRequest(status) {
return
{
type
:
REBLOG_REQUEST
,
status
:
status
,
skipLoading
:
true
,
};
};
...
...
@@ -70,6 +71,7 @@ export function reblogSuccess(status, response) {
type
:
REBLOG_SUCCESS
,
status
:
status
,
response
:
response
,
skipLoading
:
true
,
};
};
...
...
@@ -78,6 +80,7 @@ export function reblogFail(status, error) {
type
:
REBLOG_FAIL
,
status
:
status
,
error
:
error
,
skipLoading
:
true
,
};
};
...
...
@@ -85,6 +88,7 @@ export function unreblogRequest(status) {
return
{
type
:
UNREBLOG_REQUEST
,
status
:
status
,
skipLoading
:
true
,
};
};
...
...
@@ -93,6 +97,7 @@ export function unreblogSuccess(status, response) {
type
:
UNREBLOG_SUCCESS
,
status
:
status
,
response
:
response
,
skipLoading
:
true
,
};
};
...
...
@@ -101,6 +106,7 @@ export function unreblogFail(status, error) {
type
:
UNREBLOG_FAIL
,
status
:
status
,
error
:
error
,
skipLoading
:
true
,
};
};
...
...
@@ -132,6 +138,7 @@ export function favouriteRequest(status) {
return
{
type
:
FAVOURITE_REQUEST
,
status
:
status
,
skipLoading
:
true
,
};
};
...
...
@@ -140,6 +147,7 @@ export function favouriteSuccess(status, response) {
type
:
FAVOURITE_SUCCESS
,
status
:
status
,
response
:
response
,
skipLoading
:
true
,
};
};
...
...
@@ -148,6 +156,7 @@ export function favouriteFail(status, error) {
type
:
FAVOURITE_FAIL
,
status
:
status
,
error
:
error
,
skipLoading
:
true
,
};
};
...
...
@@ -155,6 +164,7 @@ export function unfavouriteRequest(status) {
return
{
type
:
UNFAVOURITE_REQUEST
,
status
:
status
,
skipLoading
:
true
,
};
};
...
...
@@ -163,6 +173,7 @@ export function unfavouriteSuccess(status, response) {
type
:
UNFAVOURITE_SUCCESS
,
status
:
status
,
response
:
response
,
skipLoading
:
true
,
};
};
...
...
@@ -171,6 +182,7 @@ export function unfavouriteFail(status, error) {
type
:
UNFAVOURITE_FAIL
,
status
:
status
,
error
:
error
,
skipLoading
:
true
,
};
};
...
...
@@ -258,6 +270,7 @@ export function pinRequest(status) {
return
{
type
:
PIN_REQUEST
,
status
,
skipLoading
:
true
,
};
};
...
...
@@ -266,6 +279,7 @@ export function pinSuccess(status, response) {
type
:
PIN_SUCCESS
,
status
,
response
,
skipLoading
:
true
,
};
};
...
...
@@ -274,6 +288,7 @@ export function pinFail(status, error) {
type
:
PIN_FAIL
,
status
,
error
,
skipLoading
:
true
,
};
};
...
...
@@ -293,6 +308,7 @@ export function unpinRequest(status) {
return
{
type
:
UNPIN_REQUEST
,
status
,
skipLoading
:
true
,
};
};
...
...
@@ -301,6 +317,7 @@ export function unpinSuccess(status, response) {
type
:
UNPIN_SUCCESS
,
status
,
response
,
skipLoading
:
true
,
};
};
...
...
@@ -309,5 +326,6 @@ export function unpinFail(status, error) {
type
:
UNPIN_FAIL
,
status
,
error
,
skipLoading
:
true
,
};
};
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