mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
8296782149
The notification system was also updated so it can be used from JavaScript events such as image manager uploads. Closes #25
12 lines
209 B
JavaScript
12 lines
209 B
JavaScript
"use strict";
|
|
|
|
module.exports = function(ngApp, events) {
|
|
|
|
ngApp.factory('imageManagerService', function() {
|
|
return {
|
|
show: false,
|
|
showExternal: false
|
|
};
|
|
});
|
|
|
|
}; |