MDL-26271 fix borked sql parameters in forum_search_posts and add missing modinfo...
[moodle.git] / message / module.js
blobe0627d0cc6552087b818658a8d392d79406e6d78
1 M.core_message = M.core_message || {};
3 M.core_message.init_focus = function(Y, eid) {
4     document.getElementById(eid).focus();
5 };
7 M.core_message.init_refresh_page = function(Y, delay, url) {
8         var delay_callback = function() {
9                 document.location.replace(url);
10         };
11         setTimeout(delay_callback, delay);
14 M.core_message.combinedsearchgotfocus = function(e) {
15     if (e.target.get('value')==this.defaultsearchterm) {
16         e.target.select();
17     }
20 M.core_message.init_notification = function(Y, title, content, url) {
21     Y.use('overlay', function() {
22         var o = new Y.Overlay({
23             headerContent :  title,
24             bodyContent : content
25         });
26         o.render(Y.one(document.body));
28         if (Y.UA.ie > 0 && Y.UA.ie < 7) {
29             // Adjust for IE 6 (can't handle fixed pos)
30             //align the bottom right corner of the overlay with the bottom right of the viewport
31             o.set("align", {
32                 points:[Y.WidgetPositionAlign.BR, Y.WidgetPositionAlign.BR]
33             });
34         }
36         Y.one('#notificationyes').on('click', function(e) {
37             window.location.href = url;
38         }, o);
39         Y.one('#notificationno').on('click', function(e) {
40             o.hide();
41             e.preventDefault();
42             return false;
43         }, o);
44     });