From f0eeec893290a433ba79ac744c607c8901f93aec Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Tue, 7 May 2013 15:36:32 -0400 Subject: [PATCH] fixing alert removal by alert_id and adding alerts when thread is locked or pinned --- public/src/app.js | 4 ++- public/templates/category.tpl | 2 +- public/templates/topic.tpl | 51 ++++++++++++++++++++++++++++++----- src/posts.js | 7 +++-- src/topics.js | 15 +++++++---- 5 files changed, 64 insertions(+), 15 deletions(-) diff --git a/public/src/app.js b/public/src/app.js index 89be5c0a2c..bf5065d6c6 100644 --- a/public/src/app.js +++ b/public/src/app.js @@ -33,6 +33,8 @@ var socket, // use unique alert_id to have multiple alerts visible at a time, use the same alert_id to fade out the current instance // type : error, success, info, warning/notify + // title = bolded title text + // message = alert message content // timeout default = permanent // location : notification_window (default) or content app.alert = function(params) { @@ -41,7 +43,7 @@ var socket, strong = document.createElement('strong'), p = document.createElement('p'); - var alert_id = 'alert_button_' + ((alert_id) ? alert_id : new Date().getTime()); + var alert_id = 'alert_button_' + ((params.alert_id) ? params.alert_id : new Date().getTime()); jQuery('#'+alert_id).fadeOut(500, function() { this.remove(); diff --git a/public/templates/category.tpl b/public/templates/category.tpl index 7f01999c9c..99d54f8140 100644 --- a/public/templates/category.tpl +++ b/public/templates/category.tpl @@ -10,7 +10,7 @@