From ca89b8f916be4a53ed655b5a64d940fba73b221a Mon Sep 17 00:00:00 2001
From: Rufus Pollock
Date: Wed, 29 Feb 2012 13:19:11 +0000
Subject: [PATCH] [doc][xs]: correct alert-message to alert in notify function
docs.
---
docs/view.html | 2 +-
recline.js | 2 +-
src/view.js | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/view.html b/docs/view.html
index 7ac3344c..9f35905e 100644
--- a/docs/view.html
+++ b/docs/view.html
@@ -260,7 +260,7 @@ note this.model and dataset returned are the same
window.location.hash = window.location.hash.split('?')[0] + my.composeQueryString(queryParams);
} notify
-Create a notification (a div.alert-message in div.alert-messsages) using provide messages and options. Options are:
+Create a notification (a div.alert in div.alert-messsages) using provide messages and options. Options are:
- category: warning (default), success, error
diff --git a/recline.js b/recline.js
index 634bf8c6..f7687886 100644
--- a/recline.js
+++ b/recline.js
@@ -1278,7 +1278,7 @@ my.setHashQueryString = function(queryParams) {
// ## notify
//
-// Create a notification (a div.alert-message in div.alert-messsages) using provide messages and options. Options are:
+// Create a notification (a div.alert in div.alert-messsages) using provide messages and options. Options are:
//
// * category: warning (default), success, error
// * persist: if true alert is persistent, o/w hidden after 3s (default = false)
diff --git a/src/view.js b/src/view.js
index b6adad54..ed7988f4 100644
--- a/src/view.js
+++ b/src/view.js
@@ -290,7 +290,7 @@ my.setHashQueryString = function(queryParams) {
// ## notify
//
-// Create a notification (a div.alert-message in div.alert-messsages) using provide messages and options. Options are:
+// Create a notification (a div.alert in div.alert-messsages) using provide messages and options. Options are:
//
// * category: warning (default), success, error
// * persist: if true alert is persistent, o/w hidden after 3s (default = false)
|