Sha256: c3b3a6fe836ae98f857398e90654da4b82356292bc4753dd9687661588626505
Contents?: true
Size: 1.09 KB
Versions: 1
Compression:
Stored size: 1.09 KB
Contents
/*global define*/ define(['../Core/DeveloperError'], function(DeveloperError) { "use strict"; /** * <p> * Observable properties are used to implement two-way data binding in * Cesium's Model-View-View-Model (MVVM) based widget architecture. * Observable properties can be accessed and assigned like any ECMAScript 5 property. * </p> * <p> * Internally, Cesium uses the Knockout and Knockout-ES5 libraries to implement * observable properties. * </p> * <p> * This type describes an interface and is not intended to be instantiated * directly. * </p> * * @alias Observable * @constructor * * @see <a href='http://knockoutjs.com/'>Knockout homepage</a> * @see <a href='https://github.com/SteveSanderson/knockout-es5'>Knockout-ES5</a> * @see <a href='https://github.com/AnalyticalGraphicsInc/cesium/wiki/Architecture'>Widget Architecture</a> */ var Observable = function Observable() { throw new DeveloperError('This type should not be instantiated directly.'); }; return Observable; });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cesium-0.18.0 | app/assets/javascripts/Widgets/Observable.js |