remove cruft and offensive stuff
This commit is contained in:
parent
d77ae275e0
commit
44b2ba3da7
4 changed files with 1 additions and 8 deletions
|
@ -5,11 +5,6 @@ exports.eejsBlock_scripts = function (hook_name, args, cb) {
|
||||||
return cb();
|
return cb();
|
||||||
};
|
};
|
||||||
|
|
||||||
exports.eejsBlock_toolbarRight = function (hook_name, args, cb) {
|
|
||||||
args.content = args.content + eejs.require("ep_email_notifications/templates/button.html", {}, module);
|
|
||||||
return cb();
|
|
||||||
};
|
|
||||||
|
|
||||||
exports.eejsBlock_embedPopup = function (hook_name, args, cb) {
|
exports.eejsBlock_embedPopup = function (hook_name, args, cb) {
|
||||||
args.content = args.content + eejs.require("ep_email_notifications/templates/embedFrame.html", {}, module);
|
args.content = args.content + eejs.require("ep_email_notifications/templates/embedFrame.html", {}, module);
|
||||||
return cb();
|
return cb();
|
||||||
|
|
1
ep.json
1
ep.json
|
@ -6,7 +6,6 @@
|
||||||
"padUpdate": "ep_email_notifications/update",
|
"padUpdate": "ep_email_notifications/update",
|
||||||
"handleMessage": "ep_email_notifications/handleMessage",
|
"handleMessage": "ep_email_notifications/handleMessage",
|
||||||
"eejsBlock_scripts": "ep_email_notifications/client",
|
"eejsBlock_scripts": "ep_email_notifications/client",
|
||||||
"eejsBlock_editbarMenuRight": "ep_email_notifications/client:eejsBlock_toolbarRight",
|
|
||||||
"eejsBlock_embedPopup": "ep_email_notifications/client:eejsBlock_embedPopup"
|
"eejsBlock_embedPopup": "ep_email_notifications/client:eejsBlock_embedPopup"
|
||||||
},
|
},
|
||||||
"client_hooks": {
|
"client_hooks": {
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
<button onClick=askClientToEnterEmail();>FUCKING AY</button>
|
|
|
@ -60,7 +60,7 @@ exports.notifyBegin = function(padId){
|
||||||
|
|
||||||
exports.notifyEnd = function(padId){
|
exports.notifyEnd = function(padId){
|
||||||
// get the modified contents...
|
// get the modified contents...
|
||||||
|
var changesToPad = "Functionality does not exist";
|
||||||
|
|
||||||
db.get("emailSubscription:" + padId, function(err, recipients){ // get everyone we need to email
|
db.get("emailSubscription:" + padId, function(err, recipients){ // get everyone we need to email
|
||||||
async.forEach(Object.keys(recipients), function(recipient, cb){
|
async.forEach(Object.keys(recipients), function(recipient, cb){
|
||||||
|
|
Loading…
Add table
Reference in a new issue