mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Fixing strict JS error, missing var statement, broken in follow requests.
This commit is contained in:
parent
d0de39d9cf
commit
a704f18025
1 changed files with 2 additions and 2 deletions
|
@ -50,7 +50,7 @@ NEWSBLUR.Views.FollowRequestsModule = Backbone.View.extend({
|
|||
|
||||
_.each(this.request_profiles, function(profile) {
|
||||
var profile_model = new NEWSBLUR.Models.User(profile);
|
||||
$profile_badge = new NEWSBLUR.Views.SocialProfileBadge({
|
||||
var $profile_badge = new NEWSBLUR.Views.SocialProfileBadge({
|
||||
model: profile_model,
|
||||
request_approval: true
|
||||
});
|
||||
|
@ -60,4 +60,4 @@ NEWSBLUR.Views.FollowRequestsModule = Backbone.View.extend({
|
|||
return $profiles;
|
||||
}
|
||||
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue