Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
coopwire-hypothesis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
孙灵跃 Leon Sun
coopwire-hypothesis
Commits
85217178
Commit
85217178
authored
Mar 15, 2017
by
Robert Knight
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Convert <help-link> and <help-panel> to components
parent
f7f10dfd
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
48 deletions
+40
-48
app.js
src/sidebar/app.js
+2
-2
help-link.js
src/sidebar/directive/help-link.js
+12
-16
help-panel.js
src/sidebar/directive/help-panel.js
+26
-30
No files found.
src/sidebar/app.js
View file @
85217178
...
...
@@ -140,14 +140,14 @@ module.exports = angular.module('h', [
.
component
(
'annotationShareDialog'
,
require
(
'./directive/annotation-share-dialog'
))
.
component
(
'annotationThread'
,
require
(
'./directive/annotation-thread'
))
.
component
(
'dropdownMenuBtn'
,
require
(
'./directive/dropdown-menu-btn'
))
.
component
(
'helpLink'
,
require
(
'./directive/help-link'
))
.
component
(
'helpPanel'
,
require
(
'./directive/help-panel'
))
.
component
(
'publishAnnotationBtn'
,
require
(
'./directive/publish-annotation-btn'
))
.
directive
(
'excerpt'
,
require
(
'./directive/excerpt'
).
directive
)
.
directive
(
'formInput'
,
require
(
'./directive/form-input'
))
.
directive
(
'formValidate'
,
require
(
'./directive/form-validate'
))
.
directive
(
'groupList'
,
require
(
'./directive/group-list'
).
directive
)
.
directive
(
'helpLink'
,
require
(
'./directive/help-link'
))
.
directive
(
'helpPanel'
,
require
(
'./directive/help-panel'
))
.
directive
(
'hAutofocus'
,
require
(
'./directive/h-autofocus'
))
.
directive
(
'hOnTouch'
,
require
(
'./directive/h-on-touch'
))
.
directive
(
'hTooltip'
,
require
(
'./directive/h-tooltip'
))
...
...
src/sidebar/directive/help-link.js
View file @
85217178
'use strict'
;
module
.
exports
=
function
()
{
return
{
bindToController
:
true
,
module
.
exports
=
{
controllerAs
:
'vm'
,
restrict
:
'E'
,
template
:
require
(
'../templates/help_link.html'
),
controller
:
function
()
{},
scope
:
{
...
...
@@ -15,5 +12,4 @@ module.exports = function () {
auth
:
'<'
,
dateTime
:
'<'
,
},
};
};
src/sidebar/directive/help-panel.js
View file @
85217178
...
...
@@ -6,9 +6,7 @@
* @description Displays product version and environment info
*/
// @ngInject
module
.
exports
=
function
()
{
return
{
bindToController
:
true
,
module
.
exports
=
{
controllerAs
:
'vm'
,
// @ngInject
controller
:
function
(
$scope
,
$window
,
annotationUI
,
serviceUrl
)
{
...
...
@@ -30,11 +28,9 @@ module.exports = function () {
}.
bind
(
this
)
);
},
restrict
:
'E'
,
template
:
require
(
'../templates/help_panel.html'
),
scope
:
{
bindings
:
{
auth
:
'<'
,
onClose
:
'&'
,
},
};
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment