Skip to content

Commit

Permalink
Moved to jQuery 1.5 - but in the move we lose element property select…
Browse files Browse the repository at this point in the history
…ors, so now include a custom expression to support host search
  • Loading branch information
remy committed Feb 19, 2011
1 parent 3d69319 commit e9ca6d4
Show file tree
Hide file tree
Showing 2 changed files with 8,184 additions and 1 deletion.
9 changes: 8 additions & 1 deletion js/jsbin.js
@@ -1,6 +1,13 @@
//= require <jquery-1.4.0> //= require <jquery>

// required because jQuery 1.4.4 lost ability to search my object property :( (i.e. a[host=foo.com])
jQuery.expr[':'].host = function(obj, index, meta, stack) {
return obj.host == meta[3];
};

(function () { (function () {
//= require "editors/editors" //= require "editors/editors"
//= require "render/render" //= require "render/render"
//= require "chrome/app" //= require "chrome/app"
//= require "chrome/beta"
})(); })();

0 comments on commit e9ca6d4

Please sign in to comment.