Sha256: 86ae57836c6cddf2751852ff20043e12c9ce3c7df5b8b8aceb75b274932d9a9d
Contents?: true
Size: 1.13 KB
Versions: 5
Compression:
Stored size: 1.13 KB
Contents
// Copyright 2011 The Closure Library Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS-IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. goog.provide('goog.ui.equation.ChangeEvent'); goog.require('goog.events.Event'); goog.require('goog.events.EventType'); /** * Event fired when equation changes. * @constructor * @param {boolean} isValid Whether the equation is valid. * @extends {goog.events.Event} */ goog.ui.equation.ChangeEvent = function(isValid) { goog.events.Event.call(this, 'change'); /** * Whether equation is valid. * @type {boolean} */ this.isValid = isValid; }; goog.inherits(goog.ui.equation.ChangeEvent, goog.events.Event);
Version data entries
5 entries across 5 versions & 1 rubygems