mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
19 lines
248 B
JavaScript
19 lines
248 B
JavaScript
![]() |
var Trainer = function() {
|
||
|
this.highlightTitle();
|
||
|
}
|
||
|
|
||
|
Trainer.prototype = {
|
||
|
|
||
|
highlightTitle: function() {
|
||
|
var $title = $(".NB-title").get(0);
|
||
|
|
||
|
}
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
Zepto(function($) {
|
||
|
new Trainer();
|
||
|
attachFastClick();
|
||
|
});
|