Skip to content

Commit

Permalink
moved to jquery 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cantino committed Feb 18, 2009
1 parent 9cdb4e7 commit a1adc83
Show file tree
Hide file tree
Showing 5 changed files with 1,384 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
Release 0.3.6
- moved to jQuery 1.3.1 which fixed SelectorGadget loading bugs on certain sites
Release 0.3.5
- use new selector engine
- few UI changes and bug fixes
Expand Down
2 changes: 1 addition & 1 deletion lib/selectorgadget.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function wait_for_script_load(look_for, callback) {

(function(){
importCSS('http://www.selectorgadget.com/stable/lib/selectorgadget.css');
importJS('http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js', 'jQuery', function() { // Load everything else when it is done.
importJS('http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js', 'jQuery', function() { // Load everything else when it is done.
jQuery.noConflict();
importJS('http://www.selectorgadget.com/stable/vendor/diff/diff_match_patch.js', 'diff_match_patch', function() {
importJS('http://www.selectorgadget.com/stable/lib/dom.js', 'DomPredictionHelper', function() {
Expand Down
2 changes: 1 addition & 1 deletion lib/selectorgadget_edge.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function wait_for_script_load(look_for, callback) {

(function(){
importCSS('http://www.selectorgadget.com/unstable/lib/selectorgadget.css');
importJS('http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js', 'jQuery', function() { // Load everything else when it is done.
importJS('http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js', 'jQuery', function() { // Load everything else when it is done.
jQuery.noConflict();
importJS('http://www.selectorgadget.com/unstable/vendor/diff/diff_match_patch.js', 'diff_match_patch', function() {
importJS('http://www.selectorgadget.com/unstable/lib/dom.js', 'DomPredictionHelper', function() {
Expand Down
2 changes: 1 addition & 1 deletion lib/selectorgadget_local.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function wait_for_script_load(look_for, callback) {

(function(){
importCSS('../../lib/selectorgadget.css');
importJS('http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js', 'jQuery', function() { // Load everything else when it is done.
importJS('http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js', 'jQuery', function() { // Load everything else when it is done.
jQuery.noConflict();
importJS('../../vendor/diff/diff_match_patch.js', 'diff_match_patch', function() {
importJS('../../lib/dom.js', 'DomPredictionHelper', function() {
Expand Down
Loading

0 comments on commit a1adc83

Please sign in to comment.