123456789101112131415161718192021222324252627282930313233 |
- 'use strict';
- /**
- * Licensed Materials - Property of IBM
- * IBM Cognos Products: Storytelling (C) Copyright IBM Corp. 2018
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- define(['../../../lib/@waca/core-client/js/core-client/ui/core/View'], function (View) {
- var PlaceholderView = null;
- PlaceholderView = View.extend({
- init: function init() {
- PlaceholderView.inherited('init', this, arguments);
- },
- hide: function hide() {
- this.$el.find('.placeholder').hide();
- this._isShowing = false;
- },
- show: function show() {
- this.$el.find('.placeholder').show();
- this._isShowing = true;
- },
- isShowing: function isShowing() {
- return this._isShowing;
- }
- });
- return PlaceholderView;
- });
- //# sourceMappingURL=PlaceholderView.js.map
|