Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
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
die_coolen_jungs
our_own_cloud_project
Commits
997653fd
Commit
997653fd
authored
10 years ago
by
Vincent Petry
Browse files
Options
Downloads
Patches
Plain Diff
Replaced spaces with tabs in apps.js
parent
25a8588f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/js/apps.js
+54
-54
54 additions, 54 deletions
core/js/apps.js
with
54 additions
and
54 deletions
core/js/apps.js
+
54
−
54
View file @
997653fd
...
...
@@ -10,38 +10,38 @@
(
function
(
document
,
$
,
exports
)
{
'
use strict
'
;
'
use strict
'
;
var
dynamicSlideToggleEnabled
=
false
;
var
dynamicSlideToggleEnabled
=
false
;
exports
.
Apps
=
{
enableDynamicSlideToggle
:
function
()
{
dynamicSlideToggleEnabled
=
true
;
}
};
exports
.
Apps
=
{
enableDynamicSlideToggle
:
function
()
{
dynamicSlideToggleEnabled
=
true
;
}
};
/**
* Provides a way to slide down a target area through a button and slide it
* up if the user clicks somewhere else. Used for the news app settings and
* add new field.
*
* Usage:
* <button data-apps-slide-toggle=".slide-area">slide</button>
* <div class=".slide-area" class="hidden">I'm sliding up</div>
*/
var
registerAppsSlideToggle
=
function
()
{
var
buttons
=
$
(
'
[data-apps-slide-toggle]
'
);
/**
* Provides a way to slide down a target area through a button and slide it
* up if the user clicks somewhere else. Used for the news app settings and
* add new field.
*
* Usage:
* <button data-apps-slide-toggle=".slide-area">slide</button>
* <div class=".slide-area" class="hidden">I'm sliding up</div>
*/
var
registerAppsSlideToggle
=
function
()
{
var
buttons
=
$
(
'
[data-apps-slide-toggle]
'
);
$
(
document
).
click
(
function
(
event
)
{
$
(
document
).
click
(
function
(
event
)
{
if
(
dynamicSlideToggleEnabled
)
{
buttons
=
$
(
'
[data-apps-slide-toggle]
'
);
}
if
(
dynamicSlideToggleEnabled
)
{
buttons
=
$
(
'
[data-apps-slide-toggle]
'
);
}
buttons
.
each
(
function
(
index
,
button
)
{
buttons
.
each
(
function
(
index
,
button
)
{
var
areaSelector
=
$
(
button
).
data
(
'
apps-slide-toggle
'
);
var
area
=
$
(
areaSelector
);
var
areaSelector
=
$
(
button
).
data
(
'
apps-slide-toggle
'
);
var
area
=
$
(
areaSelector
);
function
hideArea
()
{
area
.
slideUp
(
function
()
{
...
...
@@ -54,34 +54,34 @@
});
}
// do nothing if the area is animated
if
(
!
area
.
is
(
'
:animated
'
))
{
// button toggles the area
if
(
button
===
event
.
target
)
{
if
(
area
.
is
(
'
:visible
'
))
{
hideArea
();
}
else
{
showArea
();
}
// all other areas that have not been clicked but are open
// should be slid up
}
else
{
var
closest
=
$
(
event
.
target
).
closest
(
areaSelector
);
if
(
area
.
is
(
'
:visible
'
)
&&
closest
[
0
]
!==
area
[
0
])
{
hideArea
();
}
}
}
});
});
};
$
(
document
).
ready
(
function
()
{
registerAppsSlideToggle
();
});
// do nothing if the area is animated
if
(
!
area
.
is
(
'
:animated
'
))
{
// button toggles the area
if
(
button
===
event
.
target
)
{
if
(
area
.
is
(
'
:visible
'
))
{
hideArea
();
}
else
{
showArea
();
}
// all other areas that have not been clicked but are open
// should be slid up
}
else
{
var
closest
=
$
(
event
.
target
).
closest
(
areaSelector
);
if
(
area
.
is
(
'
:visible
'
)
&&
closest
[
0
]
!==
area
[
0
])
{
hideArea
();
}
}
}
});
});
};
$
(
document
).
ready
(
function
()
{
registerAppsSlideToggle
();
});
}(
document
,
jQuery
,
OC
));
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