Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
var Lock = function () {
2
 
3
    return {
4
        //main function to initiate the module
5
        init: function () {
6
        }
7
 
8
    };
9
 
10
}();
11
 
12
jQuery(document).ready(function() {
13
    Lock.init();
14
});