rack-insight 0.5.9 → 0.5.10
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +8 -2
- data/lib/rack/insight/public/__insight__/insight.js +2 -2
- data/lib/rack/insight/version.rb +1 -1
- metadata +1 -1
data/CHANGELOG
CHANGED
@@ -1,10 +1,16 @@
|
|
1
|
-
== 0.5.
|
1
|
+
== 0.5.10 / 2012-09-04 (Peter Boling)
|
2
|
+
|
3
|
+
* Bug Fixes
|
4
|
+
|
5
|
+
* Ajax requests for previously cached panel data now go to root (/), which allows it to work on non-root URLs.
|
6
|
+
|
7
|
+
== 0.5.9 / 2012-09-04 (Peter Boling)
|
2
8
|
|
3
9
|
* New Features
|
4
10
|
|
5
11
|
* FilteredBacktrace was disabled in LogicalInsight. It's now back. It is now configurable via the configure block.
|
6
12
|
|
7
|
-
== 0.5.8 / 2012-09-
|
13
|
+
== 0.5.8 / 2012-09-04 (Peter Boling)
|
8
14
|
|
9
15
|
* Bug Fixes
|
10
16
|
|
@@ -14,7 +14,7 @@ jQuery(function($) {
|
|
14
14
|
}
|
15
15
|
},
|
16
16
|
getPanelContent: function() {
|
17
|
-
$.get("__insight__/panels_content?request_id=" + this.request_id, function(data) {
|
17
|
+
$.get("/__insight__/panels_content?request_id=" + this.request_id, function(data) {
|
18
18
|
$('#rack-insight').append(data)
|
19
19
|
$.insight.switchCurrentPanel()
|
20
20
|
$.insight.openCurrent()
|
@@ -38,7 +38,7 @@ jQuery(function($) {
|
|
38
38
|
} else {
|
39
39
|
this.openCurrent()
|
40
40
|
}
|
41
|
-
$.get("__insight__/panels_header?request_id=" + this.request_id, function(data) {
|
41
|
+
$.get("/__insight__/panels_header?request_id=" + this.request_id, function(data) {
|
42
42
|
$('ul.panels').html(data)
|
43
43
|
})
|
44
44
|
},
|
data/lib/rack/insight/version.rb
CHANGED