﻿Depend.Print = function(serverVars) {
    this.ServerVars = serverVars;
    this.Initialize();
};
Depend.Print.prototype = {
    Initialize: function() {
        $(serverVars.printSelector).click(function() {
            window.print();
            return false;
        });
    }
};
Depend.Extend(Depend.Print, Depend.Core);