From 80b299e8c4f290e3b16f35eea922cac989b6e767 Mon Sep 17 00:00:00 2001 From: seshukm Date: Wed, 8 Mar 2017 11:54:56 +0530 Subject: VnfMarket place refactor IssueId : CLIENT-4 Change-Id: Ia1b076400f9c3bedf9db714099a608ece392aa59 Signed-off-by: seshukm --- .../modules/closure/truncate/truncate.css | 14 ---- .../modules/closure/truncate/truncate.js | 97 ---------------------- .../modules/closure/truncate/truncate.min.css | 6 -- .../modules/closure/truncate/truncate.min.js | 7 -- 4 files changed, 124 deletions(-) delete mode 100644 vnfmarket/common/thirdparty/angular-material/modules/closure/truncate/truncate.css delete mode 100644 vnfmarket/common/thirdparty/angular-material/modules/closure/truncate/truncate.js delete mode 100644 vnfmarket/common/thirdparty/angular-material/modules/closure/truncate/truncate.min.css delete mode 100644 vnfmarket/common/thirdparty/angular-material/modules/closure/truncate/truncate.min.js (limited to 'vnfmarket/common/thirdparty/angular-material/modules/closure/truncate') diff --git a/vnfmarket/common/thirdparty/angular-material/modules/closure/truncate/truncate.css b/vnfmarket/common/thirdparty/angular-material/modules/closure/truncate/truncate.css deleted file mode 100644 index aac4bb0b..00000000 --- a/vnfmarket/common/thirdparty/angular-material/modules/closure/truncate/truncate.css +++ /dev/null @@ -1,14 +0,0 @@ -/*! - * Angular Material Design - * https://github.com/angular/material - * @license MIT - * v1.1.3 - */ -.md-truncate { - overflow: hidden; - white-space: nowrap; - text-overflow: ellipsis; } - .md-truncate.md-clip { - text-overflow: clip; } - .md-truncate.flex { - width: 0; } diff --git a/vnfmarket/common/thirdparty/angular-material/modules/closure/truncate/truncate.js b/vnfmarket/common/thirdparty/angular-material/modules/closure/truncate/truncate.js deleted file mode 100644 index e2c7c516..00000000 --- a/vnfmarket/common/thirdparty/angular-material/modules/closure/truncate/truncate.js +++ /dev/null @@ -1,97 +0,0 @@ -/*! - * Angular Material Design - * https://github.com/angular/material - * @license MIT - * v1.1.3 - */ -goog.provide('ngmaterial.components.truncate'); -goog.require('ngmaterial.core'); -/** - * @ngdoc module - * @name material.components.truncate - */ -MdTruncateController['$inject'] = ["$element"]; -angular.module('material.components.truncate', ['material.core']) - .directive('mdTruncate', MdTruncateDirective); - -/** - * @ngdoc directive - * @name mdTruncate - * @module material.components.truncate - * @restrict AE - * @description - * - * The `md-truncate` component displays a label that will automatically clip text which is wider - * than the component. By default, it displays an ellipsis, but you may apply the `md-clip` CSS - * class to override this default and use a standard "clipping" approach. - * - * Note: The `md-truncate` component does not automatically adjust it's width. You must - * provide the `flex` attribute, or some other CSS-based width management. See the - * demos for examples. - * - * @usage - * - * ### As an Element - * - * - *
- * Back - * - * Chapter 1 - The Way of the Old West - * - * Forward - *
- *
- * - * ### As an Attribute - * - * - *

Some Title With a Lot of Text

- *
- * - * ## CSS & Styles - * - * `` provides two CSS classes that you may use to control the type of clipping. - * - * Note: The `md-truncate` also applies a setting of `width: 0;` when used with the `flex` - * attribute to fix an issue with the flex element not shrinking properly. - * - *
- * - * - * - * Assigns the "ellipsis" behavior (default) which will cut off mid-word and append an ellipsis - * (…) to the end of the text. - * - * - * - * Assigns the "clipping" behavior which will simply chop off the text. This may happen - * mid-word or even mid-character. - * - * - * - *
- */ -function MdTruncateDirective() { - return { - restrict: 'AE', - - controller: MdTruncateController, - controllerAs: '$ctrl', - bindToController: true - } -} - -/** - * Controller for the component. - * - * @param $element The md-truncate element. - * - * @constructor - * ngInject - */ -function MdTruncateController($element) { - $element.addClass('md-truncate'); -} - -ngmaterial.components.truncate = angular.module("material.components.truncate"); \ No newline at end of file diff --git a/vnfmarket/common/thirdparty/angular-material/modules/closure/truncate/truncate.min.css b/vnfmarket/common/thirdparty/angular-material/modules/closure/truncate/truncate.min.css deleted file mode 100644 index 815dd0bc..00000000 --- a/vnfmarket/common/thirdparty/angular-material/modules/closure/truncate/truncate.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Angular Material Design - * https://github.com/angular/material - * @license MIT - * v1.1.2-master-a9ba340 - */.md-truncate{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.md-truncate.md-clip{text-overflow:clip}.md-truncate.flex{width:0} \ No newline at end of file diff --git a/vnfmarket/common/thirdparty/angular-material/modules/closure/truncate/truncate.min.js b/vnfmarket/common/thirdparty/angular-material/modules/closure/truncate/truncate.min.js deleted file mode 100644 index 6b2bbc79..00000000 --- a/vnfmarket/common/thirdparty/angular-material/modules/closure/truncate/truncate.min.js +++ /dev/null @@ -1,7 +0,0 @@ -/*! - * Angular Material Design - * https://github.com/angular/material - * @license MIT - * v1.1.2-master-a9ba340 - */ -function MdTruncateDirective(){return{restrict:"AE",controller:MdTruncateController,controllerAs:"$ctrl",bindToController:!0}}function MdTruncateController(e){e.addClass("md-truncate")}goog.provide("ngmaterial.components.truncate"),goog.require("ngmaterial.core"),MdTruncateController.$inject=["$element"],angular.module("material.components.truncate",["material.core"]).directive("mdTruncate",MdTruncateDirective),ngmaterial.components.truncate=angular.module("material.components.truncate"); \ No newline at end of file -- cgit 1.2.3-korg