Commit c90f6c81 authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Merge branch 'feature-MobileOptimization' into 'dev'

Feature mobile optimization

See merge request redmic-project/client/widgets!4
parents dd885552 7b84e5b0
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -42,6 +42,8 @@ define([

		postCreate: function() {

			this.domNode.removeAttribute('widgetId');

			this.inherited(arguments);

			put(this.domNode, this.classDefault);
+7 −0
Original line number Diff line number Diff line
@@ -38,6 +38,13 @@ define([
			this.query = {};
		},

		postCreate: function() {

			this.domNode.removeAttribute('widgetId');

			this.inherited(arguments);
		},

		setConfig: function(config) {

			this.config = config;
+7 −0
Original line number Diff line number Diff line
@@ -33,6 +33,13 @@ define([
			this._render();
		},

		postCreate: function() {

			this.domNode.removeAttribute('widgetId');

			this.inherited(arguments);
		},

		_render: function() {

			this.containerBucketsNode = put("div[data-redmic-id=$].bucket", this.title);
+6 −0
Original line number Diff line number Diff line
@@ -86,6 +86,10 @@ define([

		postCreate: function() {

			this.domNode.removeAttribute('widgetId');

			this.inherited(arguments);

			this._initialize();
		},

@@ -141,6 +145,8 @@ define([
				onClick: lang.hitch(this, this._clickSlider)
			}).placeAt(this.containerBarNode);

			this.slider.domNode.removeAttribute('widgetId');

			this.slider.sliderHandle.onmousedown = lang.hitch(this, this._onMouseDownSlider);
			this.slider.progressBar.onmousedown = lang.hitch(this, this._onMouseDownSlider);
			this.slider.remainingBar.onmousedown = lang.hitch(this, this._onMouseDownSlider);
+4 −0
Original line number Diff line number Diff line
@@ -47,6 +47,10 @@ define([

		postCreate: function() {

			this.domNode.removeAttribute('widgetId');

			this.inherited(arguments);

			this.slider = new HorizontalSlider({
				'class': 'sliderForm',
				showButtons: false,
Loading