project/static/js/kiwipycon.js
author Puneeth Chaganti <punchagan@fossee.in>
Mon, 18 Oct 2010 23:29:05 +0530
changeset 175 a51d2b6e9a78
parent 1 fda1c66b25f9
permissions -rw-r--r--
Minor changes to the content of post-registration email.

$(function() {

    // Message ################################################################ 

    var message = $.cookie("message");
    
    if (message != null) { 
        $.jGrowl(message);
        $.cookie("message", null, { path: '/' });
    };
});