project/static/js/kiwipycon.js
author Madhusudan.C.S <madhusudancs@gmail.com>
Thu, 14 Jan 2010 15:54:34 +0530
changeset 84 d01c62c2a628
parent 1 fda1c66b25f9
permissions -rw-r--r--
Added the initial proceedings app files and enabled them in both production and development settings.

$(function() {

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

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