NoBugs
NoBugs

Reputation: 9496

Including non-minified Backbone and Underscore in Wordpress

I have been trying to debug an intermittent problem in the Wordpress-3.5 uploader, where it seemed a Backbone.js model was getting messed up somewhere. I downloaded the non-minified Backbone.js and Underscore files, pasted them over Wordpress' built-in wp-includes .min.js files, but then it gives a different error than usual.

Is this caused by using a slightly newer .js file from the Backbone and Underscore sites? (I couldn't find the exact version Wordpress uses there), or is there a problem with replacing the .min.js file with the full file? The script was sent to browser, but would not run the same as the builtins.

Upvotes: 0

Views: 992

Answers (1)

number5
number5

Reputation: 16453

You should always use same version of Backbone/Underscore files when trying to debug.

Just replace a minified js with a normal js shouldn't be a problem.

You can download Backbone 0.9.2 and Underscore 1.4.1 from below urls:

  1. https://raw.github.com/documentcloud/backbone/0.9.2/backbone.js
  2. https://raw.github.com/documentcloud/underscore/1.4.1/underscore.js

Upvotes: 1

Related Questions