mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
18 lines
248 B
JavaScript
18 lines
248 B
JavaScript
var Trainer = function() {
|
|
this.highlightTitle();
|
|
}
|
|
|
|
Trainer.prototype = {
|
|
|
|
highlightTitle: function() {
|
|
var $title = $(".NB-title").get(0);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
Zepto(function($) {
|
|
new Trainer();
|
|
attachFastClick();
|
|
});
|