Skip to content
View psaliente's full-sized avatar
🏠
Working from home
🏠
Working from home
  • Pasay City, Philippines

Block or report psaliente

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. psaliente.github.io Public

    my project portfolio

    TypeScript

  2. GenericDataObject Public

    Generic Helper Class for Multiple-Tier Architecture

    C# 1

  3. custom knockout js component used fo...
    1
    function KODropDownComponent(params) {
    2
        var self = this;
    3
        self.version = "2.1.1";
    4
        self.dropdownFilter = params.value;
    5
        self.dropdownLabel = params.label;
  4. multiple select dropdown (tupe, eto ...
    1
    function KODropDownComponent(params) {
    2
        var self = this;
    3
        self.version = "1.0.0";
    4
        self.dropdownFilter = params.value;
    5
        self.dropdownLabel = params.label;
  5. custom knockout js component inspire...
    1
    (function ($) {
    2
        $.fn.hasScrollBar = function () {
    3
            return this.get(0) ? this.get(0).scrollHeight > this.innerHeight() : false;
    4
        };
    5
    } (jQuery));