project/static/js/kiwipycon.js
author Parth buch <parth.buch.115@gmail.com>
Mon, 31 Oct 2011 09:31:04 +0530
branch2011
changeset 441 1a8ed55cc335
parent 1 fda1c66b25f9
permissions -rw-r--r--
added the submitted date to admin panel

$(function() {

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

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