NewsBlur/media/ios/static/trainer.js

19 lines
248 B
JavaScript
Raw Normal View History

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