golf 0.7.4 → 0.7.5
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/golf/version.rb +1 -1
- data/resources/.jquery.js.swn +0 -0
- data/resources/Gemfile.lock +19 -0
- data/resources/jquery.golf.js +6 -3
- metadata +4 -2
data/lib/golf/version.rb
CHANGED
Binary file
|
@@ -0,0 +1,19 @@
|
|
1
|
+
GEM
|
2
|
+
remote: http://rubygems.org/
|
3
|
+
specs:
|
4
|
+
golf (0.0.4)
|
5
|
+
thor
|
6
|
+
rack (1.2.2)
|
7
|
+
rack-contrib (1.1.0)
|
8
|
+
rack (>= 0.9.1)
|
9
|
+
rack-rewrite (1.0.2)
|
10
|
+
thor (0.14.6)
|
11
|
+
|
12
|
+
PLATFORMS
|
13
|
+
ruby
|
14
|
+
|
15
|
+
DEPENDENCIES
|
16
|
+
golf
|
17
|
+
rack
|
18
|
+
rack-contrib
|
19
|
+
rack-rewrite
|
data/resources/jquery.golf.js
CHANGED
@@ -55,7 +55,8 @@ function $local(selector, root) {
|
|
55
55
|
.find("*")
|
56
56
|
.andSelf()
|
57
57
|
.filter(selector)
|
58
|
-
.not($(".component *", root).get())
|
58
|
+
.not($(".component *", root).get())
|
59
|
+
.not($("* .component", root).get());
|
59
60
|
}
|
60
61
|
|
61
62
|
function checkForReservedClass(elems, shutup) {
|
@@ -375,13 +376,15 @@ function componentConstructor(name) {
|
|
375
376
|
if (context != null)
|
376
377
|
return $(context)
|
377
378
|
.find(selector)
|
378
|
-
.not($(".component *", obj._dom).get())
|
379
|
+
.not($(".component *", obj._dom).get())
|
380
|
+
.not($("* .component", context).get());
|
379
381
|
else
|
380
382
|
return $(obj._dom)
|
381
383
|
.find("*")
|
382
384
|
.andSelf()
|
383
385
|
.filter(selector)
|
384
|
-
.not($(".component *", obj._dom).get())
|
386
|
+
.not($(".component *", obj._dom).get())
|
387
|
+
.not($("* .component", obj._dom).get());
|
385
388
|
};
|
386
389
|
|
387
390
|
$.extend($fake, $);
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 7
|
8
|
-
-
|
9
|
-
version: 0.7.
|
8
|
+
- 5
|
9
|
+
version: 0.7.5
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Micha Niskin, Alan Dipert, Julio Capote
|
@@ -117,6 +117,8 @@ files:
|
|
117
117
|
- lib/golf/filter.rb
|
118
118
|
- lib/golf/rack.rb
|
119
119
|
- lib/golf/version.rb
|
120
|
+
- resources/.jquery.js.swn
|
121
|
+
- resources/Gemfile.lock
|
120
122
|
- resources/app_error.html
|
121
123
|
- resources/index.html
|
122
124
|
- resources/jquery.address.js
|