Remove remaining Darline calls
This commit is contained in:
parent
cf2f5a4838
commit
b49ca563d3
1 changed files with 34 additions and 26 deletions
|
@ -23,38 +23,46 @@
|
|||
{% block bottom_js %}
|
||||
{{ block.super }}
|
||||
<script type="text/javascript">
|
||||
D.Event.on('a.login', 'click', function (e) {
|
||||
D.Event.stop(e);
|
||||
var login = document.querySelector('a.login');
|
||||
if (login) {
|
||||
L.DomEvent.on(login, 'click', function (e) {
|
||||
L.DomEvent.stop(e);
|
||||
L.Storage.Xhr.login({
|
||||
"login_required": this.getAttribute('href'),
|
||||
"redirect": "/"
|
||||
});
|
||||
});
|
||||
D.Event.on('a.logout', 'click', function (e) {
|
||||
D.Event.stop(e);
|
||||
}
|
||||
var logout = document.querySelector('a.logout');
|
||||
if (logout) {
|
||||
L.DomEvent.on(logout, 'click', function (e) {
|
||||
L.DomEvent.stop(e);
|
||||
L.Storage.Xhr.logout(this.getAttribute('href'));
|
||||
});
|
||||
D.Event.on('a.create-map', 'click', function (e) {
|
||||
D.Event.stop(e);
|
||||
L.Storage.Xhr.get(this.getAttribute('href'), {
|
||||
listen_form: {id: "map_edit"}
|
||||
});
|
||||
});
|
||||
}
|
||||
var getMore = function (e) {
|
||||
D.Event.stop(e);
|
||||
D.Xhr.get(this.href, {
|
||||
L.DomEvent.stop(e);
|
||||
L.S.Xhr._ajax({
|
||||
uri: this.href,
|
||||
verb: 'GET',
|
||||
callback: function (data) {
|
||||
var container = this.parentNode;
|
||||
container.innerHTML = data;
|
||||
D.DOM.forEach(D.DOM.get('script', container), function (item) {
|
||||
Array.prototype.forEach.call(container.querySelectorAll('script'), function (item) {
|
||||
eval(item.firstChild.textContent);
|
||||
});
|
||||
D.Event.on('.more_button', 'click', getMore);
|
||||
},
|
||||
thisobj: this
|
||||
});
|
||||
var more = document.querySelector('.more_button');
|
||||
if (more) {
|
||||
L.DomEvent.on(more, 'click', getMore, more);
|
||||
}
|
||||
},
|
||||
context: this
|
||||
});
|
||||
};
|
||||
var more = document.querySelector('.more_button');
|
||||
if (more) {
|
||||
L.DomEvent.on(more, 'click', getMore, more);
|
||||
}
|
||||
D.Event.on('.more_button', 'click', getMore);
|
||||
</script>
|
||||
{% endblock bottom_js %}
|
||||
|
||||
|
|
Loading…
Reference in a new issue