remove cruft and offensive stuff

This commit is contained in:
John McLear 2013-01-31 02:16:20 +00:00
parent d77ae275e0
commit 44b2ba3da7
4 changed files with 1 additions and 8 deletions

View file

@ -5,11 +5,6 @@ exports.eejsBlock_scripts = function (hook_name, args, 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) {
args.content = args.content + eejs.require("ep_email_notifications/templates/embedFrame.html", {}, module);
return cb();

View file

@ -6,7 +6,6 @@
"padUpdate": "ep_email_notifications/update",
"handleMessage": "ep_email_notifications/handleMessage",
"eejsBlock_scripts": "ep_email_notifications/client",
"eejsBlock_editbarMenuRight": "ep_email_notifications/client:eejsBlock_toolbarRight",
"eejsBlock_embedPopup": "ep_email_notifications/client:eejsBlock_embedPopup"
},
"client_hooks": {

View file

@ -1 +0,0 @@
<button onClick=askClientToEnterEmail();>FUCKING AY</button>

View file

@ -60,7 +60,7 @@ exports.notifyBegin = function(padId){
exports.notifyEnd = function(padId){
// get the modified contents...
var changesToPad = "Functionality does not exist";
db.get("emailSubscription:" + padId, function(err, recipients){ // get everyone we need to email
async.forEach(Object.keys(recipients), function(recipient, cb){