mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
20 lines
283 B
JavaScript
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
|
|
});
|
|
});
|