diff --git src/wp-admin/js/theme.js src/wp-admin/js/theme.js
index 0b52328..77054b5 100644
|
|
|
themes.Router = Backbone.Router.extend({ |
| 1179 | 1179 | |
| 1180 | 1180 | navigate: function() { |
| 1181 | 1181 | if ( Backbone.history._hasPushState ) { |
| 1182 | | Backbone.Router.navigate.apply( this, arguments ); |
| | 1182 | Backbone.Router.prototype.navigate.apply( this, arguments ); |
| 1183 | 1183 | } |
| 1184 | 1184 | } |
| 1185 | 1185 | |
| … |
… |
themes.InstallerRouter = Backbone.Router.extend({ |
| 1582 | 1582 | |
| 1583 | 1583 | navigate: function() { |
| 1584 | 1584 | if ( Backbone.history._hasPushState ) { |
| 1585 | | Backbone.Router.navigate.apply( this, arguments ); |
| | 1585 | Backbone.Router.prototype.navigate.apply( this, arguments ); |
| 1586 | 1586 | } |
| 1587 | 1587 | } |
| 1588 | 1588 | }); |