mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 14:17:57 +01:00
more readable function
This commit is contained in:
parent
28010a85aa
commit
0eaa8c8638
@ -228,14 +228,17 @@ $(function () {
|
|||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
$(document).ready(fetchLabels({
|
$(document).ready(function() {
|
||||||
postUpdate: function(data) {
|
// add labels to filter list...
|
||||||
var labels = data.labels;
|
fetchLabels({
|
||||||
for (var i = 0; i < labels.length; i++) {
|
postUpdate: function(data) {
|
||||||
createLabelItem(labels[i], null)
|
var labels = data.labels;
|
||||||
|
for (var i = 0; i < labels.length; i++) {
|
||||||
|
createLabelItem(labels[i], null)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
});
|
||||||
}))
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
function reloadTable() {
|
function reloadTable() {
|
||||||
|
Loading…
Reference in New Issue
Block a user