Skip to content
Extraits de code Groupes Projets
Valider 94799537 rédigé par Benaka Moorthi's avatar Benaka Moorthi
Parcourir les fichiers

Refs #4116, move initElements code to utility function in UIControl.

parent ac285a17
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -56,6 +56,15 @@
}
};
UIControl.initElements = function (klass, selector) {
$(selector).each(function () {
if (!$(this).attr('data-inited')) {
var control = new klass(this);
$(this).attr('data-inited', 1);
}
});
};
UIControl.prototype = {
/**
......
......@@ -153,7 +153,8 @@ class API
* @param bool $doNotFetchActions
* @return DataTable
*/
public function getLastVisitsDetails($idSite, $period, $date, $segment = false, $filter_limit = false, $filter_offset = false, $minTimestamp = false, $flat = false, $doNotFetchActions = false)
public function getLastVisitsDetails($idSite, $period = false, $date = false, $segment = false, $filter_limit = false,
$filter_offset = false, $minTimestamp = false, $flat = false, $doNotFetchActions = false)
{
if (empty($filter_limit)) {
$filter_limit = 10;
......
......@@ -31,14 +31,7 @@
* if the element has not already been initialized.
*/
VisitorProfileControl.initElements = function () {
$('.visitor-profile').each(function () {
if (!$(this).attr('data-inited')) {
var control = new VisitorProfileControl(this);
$(this).data('uiControlObject', control);
$(this).attr('data-inited', 1);
}
});
UIControl.initElements(this, '.visitor-profile');
};
/**
......
......@@ -19,14 +19,7 @@
};
RealtimeMap.initElements = function () {
$('.RealTimeMap').each(function () {
if (!$(this).attr('data-inited')) {
var control = new RealtimeMap(this);
$(this).data('uiControlObject', control);
$(this).attr('data-inited', 1);
}
});
UIControl.initElements(this, '.RealTimeMap');
};
$.extend(RealtimeMap.prototype, UIControl.prototype, {
......
......@@ -21,4 +21,4 @@
</div>
</div>
<script type="text/javascript">UserCountryMap.RealtimeMap.initElements();</script>
<script type="text/javascript">UserCountryMap.RealtimeMap.initElements();</script>
\ No newline at end of file
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter