NewsBlur/clients/ios/static/trainer.js
2013-06-27 09:43:22 -07:00

20 lines
283 B
JavaScript

var Trainer = function() {
this.highlightTitle();
}
Trainer.prototype = {
highlightTitle: function() {
var $title = $(".NB-title").get(0);
}
};
Zepto(function($) {
new Trainer();
attachFastClick({
skipEvent: true
});
});