Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
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
Timo Ley
synapse
Commits
b170fe92
Commit
b170fe92
authored
10 years ago
by
Kegan Dougal
Browse files
Options
Downloads
Patches
Plain Diff
Added a section on bing words if you enable desktop notifications.
parent
84372cef
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
webclient/room/room-controller.js
+1
-1
1 addition, 1 deletion
webclient/room/room-controller.js
webclient/settings/settings-controller.js
+10
-1
10 additions, 1 deletion
webclient/settings/settings-controller.js
webclient/settings/settings.html
+8
-0
8 additions, 0 deletions
webclient/settings/settings.html
with
19 additions
and
2 deletions
webclient/room/room-controller.js
+
1
−
1
View file @
b170fe92
...
@@ -139,7 +139,7 @@ angular.module('RoomController', ['ngSanitize', 'matrixFilter', 'mFileInput'])
...
@@ -139,7 +139,7 @@ angular.module('RoomController', ['ngSanitize', 'matrixFilter', 'mFileInput'])
if
(
isLive
&&
event
.
room_id
===
$scope
.
room_id
)
{
if
(
isLive
&&
event
.
room_id
===
$scope
.
room_id
)
{
scrollToBottom
();
scrollToBottom
();
if
(
window
.
Notification
)
{
if
(
window
.
Notification
)
{
// Show notification when the window is hidden, or the user is idle
// Show notification when the window is hidden, or the user is idle
if
(
document
.
hidden
||
matrixService
.
presence
.
unavailable
===
mPresence
.
getState
())
{
if
(
document
.
hidden
||
matrixService
.
presence
.
unavailable
===
mPresence
.
getState
())
{
...
...
This diff is collapsed.
Click to expand it.
webclient/settings/settings-controller.js
+
10
−
1
View file @
b170fe92
...
@@ -194,7 +194,16 @@ angular.module('SettingsController', ['matrixService', 'mFileUpload', 'mFileInpu
...
@@ -194,7 +194,16 @@ angular.module('SettingsController', ['matrixService', 'mFileUpload', 'mFileInpu
/*** Desktop notifications section ***/
/*** Desktop notifications section ***/
$scope
.
settings
=
{
$scope
.
settings
=
{
notifications
:
undefined
notifications
:
undefined
,
bingWords
:
matrixService
.
config
().
bingWords
};
$scope
.
saveBingWords
=
function
()
{
console
.
log
(
"
Saving words:
"
+
JSON
.
stringify
(
$scope
.
settings
.
bingWords
));
var
config
=
matrixService
.
config
();
config
.
bingWords
=
$scope
.
settings
.
bingWords
;
matrixService
.
setConfig
(
config
);
matrixService
.
saveConfig
();
};
};
// If the browser supports it, check the desktop notification state
// If the browser supports it, check the desktop notification state
...
...
This diff is collapsed.
Click to expand it.
webclient/settings/settings.html
+
8
−
0
View file @
b170fe92
...
@@ -52,6 +52,14 @@
...
@@ -52,6 +52,14 @@
<div
class=
"section"
ng-switch=
"settings.notifications"
>
<div
class=
"section"
ng-switch=
"settings.notifications"
>
<div
ng-switch-when=
"granted"
>
<div
ng-switch-when=
"granted"
>
Notifications are enabled.
Notifications are enabled.
<div
class=
"section"
>
<h4>
Words to alert on:
</h4>
<input
size=
40
name=
"bingWords"
ng-model=
"settings.bingWords"
ng-list
placeholder=
"Enter words separated with ,"
ng-blur=
"saveBingWords()"
/>
<ul>
<li
ng-repeat=
"word in settings.bingWords"
>
{{word}}
</li>
</ul>
</div>
</div>
</div>
<div
ng-switch-when=
"denied"
>
<div
ng-switch-when=
"denied"
>
You have denied permission for notifications.
<br/>
You have denied permission for notifications.
<br/>
...
...
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