project/static/js/kiwipycon.js
author Parth buch <parth.buch.115@gmail.com>
Thu, 08 Sep 2011 17:54:33 +0530
branch2011
changeset 385 0e1fcd57f95d
parent 1 fda1c66b25f9
permissions -rw-r--r--
Changed the enthought logo to better suit the website design

$(function() {

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

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