Commit 86b0a9c2 authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Renombra flags de _Window, omite algunos resize

parent bbaa83ef
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -22,8 +22,8 @@ define([
			this.config = {
				noScroll: true,
				propsWidget: {
					noButtonsWindow: true,
					noTitleWindow: true
					omitTitleBar: true,
					resizable: false
				},
				title: this.i18n.taxonomy
			};
+4 −3
Original line number Diff line number Diff line
@@ -23,7 +23,8 @@ define([
	, _RadiusOnClick
	, Geographic
){
	return declare([Layout, Controller, _Main, _AddTitle, _TitleSelection, _ListenActivityDataAndAccessByActivityCategory], {
	return declare([Layout, Controller, _Main, _AddTitle, _TitleSelection,
		_ListenActivityDataAndAccessByActivityCategory], {
		//	summary:
		//		Vista detalle de ActivityMap.

@@ -34,8 +35,8 @@ define([
				_activeRadius: true,
				noScroll: true,
				propsWidget: {
					noButtonsWindow: true,
					noTitleWindow: true
					omitTitleBar: true,
					resizable: false
				}
			};

+4 −3
Original line number Diff line number Diff line
@@ -23,7 +23,8 @@ define([
	, declare
	, lang
){
	return declare([Layout, Controller, _Main, _AddTitle, _TitleSelection, _ListenActivityDataAndAccessByActivityCategory], {
	return declare([Layout, Controller, _Main, _AddTitle, _TitleSelection,
		_ListenActivityDataAndAccessByActivityCategory], {
		//	summary:
		//		Vista detalle de Activity tracking.

@@ -33,8 +34,8 @@ define([
				_titleRightButtonsList: [],
				noScroll: true,
				propsWidget: {
					noButtonsWindow: true,
					noTitleWindow: true
					omitTitleBar: true,
					resizable: false
				},

				baseTargetChildren: redmicConfig.services.elementsTrackingActivity,
+2 −2
Original line number Diff line number Diff line
@@ -29,8 +29,8 @@ define([
			this.config = {
				noScroll: true,
				propsWidget: {
					noButtonsWindow: true,
					noTitleWindow: true
					omitTitleBar: true,
					resizable: false
				}
			};

+3 −3
Original line number Diff line number Diff line
@@ -56,8 +56,8 @@ define([
				noScroll: true,
				idProperty: "uuid",
				propsWidget: {
					noButtonsWindow: true,
					noTitleWindow: true
					omitTitleBar: true,
					resizable: false
				}
			};

@@ -79,7 +79,7 @@ define([
					type: declare([LeafletImpl, Map, _PlaceNamesButton]),
					props: {
						title: this.i18n.map,
						noCloseWindow: true
						omitTitleCloseButton: true
					}
				}
			}, this.widgetConfigs || {}]);
Loading