Skip to content
This repository has been archived by the owner on Nov 11, 2017. It is now read-only.

Commit

Permalink
Fix "Ember requires jQuery 1.6 or 1.7" during precompilation
Browse files Browse the repository at this point in the history
  • Loading branch information
rykov committed Feb 7, 2012
1 parent ddf5a5b commit 2d29490
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/assets/javascripts/ember-precompiler.js
Expand Up @@ -12,7 +12,7 @@ var console = window.console = {};
console.log = console.info = console.warn = console.error = function(){};

// jQuery
var jQuery = function() { return jQuery; };
var jQuery = window.jQuery = function() { return jQuery; };
jQuery.ready = function() { return jQuery; };
jQuery.inArray = function() { return jQuery; };
jQuery.jquery = "1.7.1";
Expand Down

0 comments on commit 2d29490

Please sign in to comment.