mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 15:03:07 +00:00
97732 Context help model, actions and reducer
This commit is contained in:
33
src/app/shared/context-help.service.ts
Normal file
33
src/app/shared/context-help.service.ts
Normal file
@@ -0,0 +1,33 @@
|
||||
import { Injectable } from '@angular/core';
|
||||
import { ContextHelpModel } from './context-help.model';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root'
|
||||
})
|
||||
export class ContextHelpService {
|
||||
constructor() { }
|
||||
|
||||
toggleIcons() {
|
||||
|
||||
}
|
||||
|
||||
add(contextHelp: ContextHelpModel) {
|
||||
|
||||
}
|
||||
|
||||
remove(id: string) {
|
||||
|
||||
}
|
||||
|
||||
showTooltip(id: string) {
|
||||
|
||||
}
|
||||
|
||||
hideTooltip(id: string) {
|
||||
|
||||
}
|
||||
|
||||
toggleTooltip(id: string) {
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user