Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenaka Moorthi <benaka.moorthi@gmail.com>2013-09-20 07:26:30 +0400
committerBenaka Moorthi <benaka.moorthi@gmail.com>2013-09-20 07:26:43 +0400
commit1c38c8fc428880304f5cbaa415ffa08cc8b13696 (patch)
treecddf5bd06f2a7ff470b6dbc28e13aacbb3722c03 /plugins/Actions
parentbcd535f862ead3959eba64c6e864cfa9594b5482 (diff)
Fixing build and tweaking UI test building.
Diffstat (limited to 'plugins/Actions')
-rw-r--r--plugins/Actions/javascripts/actionsDataTable.js12
1 files changed, 2 insertions, 10 deletions
diff --git a/plugins/Actions/javascripts/actionsDataTable.js b/plugins/Actions/javascripts/actionsDataTable.js
index 273d66a7d3..a727286ba5 100644
--- a/plugins/Actions/javascripts/actionsDataTable.js
+++ b/plugins/Actions/javascripts/actionsDataTable.js
@@ -40,23 +40,15 @@
* @constructor
*/
exports.ActionsDataTable = function (element) {
- DataTable.call(this, element);
-
this.parentAttributeParent = '';
this.parentId = '';
this.disabledRowDom = {}; // to handle double click on '+' row
+
+ DataTable.call(this, element);
};
$.extend(exports.ActionsDataTable.prototype, dataTablePrototype, {
- //initialisation of the actionDataTable
- init: function () {
- var domElem = this.$element;
- this.workingDivId = this.$element.attr('id');
- this.bindEventsAndApplyStyle(domElem);
- this.initialized = true;
- },
-
//see dataTable::bindEventsAndApplyStyle
bindEventsAndApplyStyle: function (domElem, rows) {
var self = this;