123456789101112131415161718192021222324252627282930 |
- /*
- * Licensed Materials - Property of IBM
- *
- * IBM Cognos Products: SHARE
- *
- * (C) Copyright IBM Corp. 2017
- *
- * US Government Users Restricted Rights - Use, duplication or disclosure
- * restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- define([
- 'bi/schedule/views/ScheduleView'
- ],
- function(View) {
- 'use strict';
- var jobScheduleView = View.extend({
- /**
- * @constructor
- */
- init: function(options) {
- options.showOptions = false;
-
- jobScheduleView.inherited('init', this, arguments);
- }
- });
- return jobScheduleView;
- });
|