Fix JSHint errors and remove unreachable code. props adamsilverstein. see #25963.

git-svn-id: https://develop.svn.wordpress.org/trunk@26778 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2013-12-07 07:51:35 +00:00
parent 1524eaf8ce
commit b08c4c109d
1 changed files with 2 additions and 9 deletions

View File

@ -339,7 +339,7 @@ themes.view.Details = wp.Backbone.View.extend({
// Checks if the theme screenshot is the old 300px width version
// and adds a corresponding class if it's true
screenshotCheck: function( el ) {
var screenshot, image, width;
var screenshot, image;
screenshot = el.find( '.screenshot img' );
image = new Image();
@ -634,12 +634,6 @@ themes.routes = Backbone.Router.extend({
baseUrl: function( url ) {
return themes.data.settings.root + url;
},
// Set the search input value based on url
search: function( query ) {
$( '.theme-search' ).val( query );
self.themes.doSearch( query );
}
});
@ -682,7 +676,6 @@ themes.Run = {
},
routes: function() {
var self = this;
// Bind to our global thx object
// so that the object is available to sub-views
themes.router = new themes.routes();