File tree 1 file changed +21
-0
lines changed
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -107,3 +107,24 @@ Copyright © 2013 [Jiri Kavulak](https://twitter.com/jirikavi).
107
107
108
108
## License
109
109
AngularJS-Toaster is under MIT license - http://www.opensource.org/licenses/mit-license.php
110
+
111
+ ##Changes Log
112
+ ## v0.4.13
113
+ - Add option in function toaster.pop() , ` toastId ` to define 'uid', use the function 'toaster.clear ()'
114
+
115
+ ``` js
116
+ var _toaster = {
117
+ type: null ,
118
+ title: null ,
119
+ body: null ,
120
+ timeout: null ,
121
+ toasterId: ' CategoryMenu' ,
122
+ toastId: ' CategoryMenuAlert'
123
+ }
124
+ ```
125
+
126
+ - Add option in function toaster.clear()
127
+ * toaster.clear(); --> clearAll with ToasterId = Undifined;
128
+ * toaster.clear('* '); -> ClearAll()
129
+ * toaster.clear('clearID'); -> clearAll() with toaster have ToasterId = 'clearID'
130
+ * toaster.clear('clearID', 'toastID'); -> Just clearAll with toasts have uid = 'toastID' in ToasterId = 'clearID'.
You can’t perform that action at this time.
0 commit comments