kaiwa/clientapp/views/main.js

34 lines
897 B
JavaScript
Raw Normal View History

2013-08-29 23:38:28 -04:00
/*global $, app, me*/
"use strict";
var StrictView = require('strictview');
var templates = require('../templates');
var ContactListItem = require('../views/contactListItem');
module.exports = StrictView.extend({
template: templates.body,
2013-09-03 18:25:14 -04:00
events: {
'click a[href]': 'handleLinkClick'
},
2013-08-29 23:38:28 -04:00
render: function () {
$('head').append(templates.head());
this.renderAndBind();
this.renderCollection(me.contacts, ContactListItem, this.$('#contactList'));
return this;
2013-09-03 18:25:14 -04:00
},
handleLinkClick: function (e) {
console.log(e);
var t = $(e.target);
var aEl = t.is('a') ? t[0] : t.closest('a')[0];
var local = window.location.host === aEl.host;
var path = aEl.pathname.slice(1);
if (local) {
e.preventDefault();
app.navigate(path);
return false;
}
2013-08-29 23:38:28 -04:00
}
});