| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
- return function (d, b) {
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- (function (factory) {
- if (typeof module === "object" && typeof module.exports === "object") {
- var v = factory(require, exports);
- if (v !== undefined) module.exports = v;
- }
- else if (typeof define === "function" && define.amd) {
- define(["require", "exports", "../ion"], factory);
- }
- })(function (require, exports) {
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- var ion_1 = require("../ion");
- /**
- * @hidden
- */
- var ToolbarBase = (function (_super) {
- __extends(ToolbarBase, _super);
- function ToolbarBase(config, elementRef, renderer) {
- return _super.call(this, config, elementRef, renderer, 'toolbar') || this;
- }
- /**
- * @hidden
- */
- ToolbarBase.prototype._setTitle = function (titleCmp) {
- this._title = titleCmp;
- };
- /**
- * @hidden
- * Returns the toolbar title text if it exists or an empty string
- */
- ToolbarBase.prototype.getTitleText = function () {
- return (this._title && this._title.getTitleText()) || '';
- };
- return ToolbarBase;
- }(ion_1.Ion));
- exports.ToolbarBase = ToolbarBase;
- });
- //# sourceMappingURL=toolbar-base.js.map
|