﻿// Copyright 2007-2010 Panopto, Inc.
// All rights reserved.  Reuse and redistribution strictly prohibited.

/// <reference path="~/Scripts/MicrosoftAjax/Start.js" />

Type.registerNamespace("Panopto.Events");

// Fired when a search is submitted in the top bar.
Panopto.Events.SubmitSearchEventArgs = function (query)
{
    this._query = query;
}
Panopto.Events.SubmitSearchEventArgs.prototype =
{
    get_query: function ()
    {
        return this._query;
    }
}

Panopto.Events.SubmitSearchEventArgs.registerClass("Panopto.Events.SubmitSearchEventArgs", Sys.EventArgs);
