acts_as_monitor 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGELOG.md
CHANGED
|
@@ -11,7 +11,8 @@ module ActsAsMonitorHelper
|
|
|
11
11
|
end
|
|
12
12
|
|
|
13
13
|
def monitor_tag_js()
|
|
14
|
-
|
|
14
|
+
path = root_path.to_s
|
|
15
|
+
content_tag(:div, path, :id => 'acts_as_monitor_status_window', :style => "display: none;") +
|
|
15
16
|
javascript_include_tag("acts_as_monitor_javascript.js") +
|
|
16
17
|
stylesheet_link_tag('acts_as_monitor.css')
|
|
17
18
|
end
|
|
@@ -5,10 +5,6 @@ document.observe('dom:loaded', function()
|
|
|
5
5
|
//alert(application_root);
|
|
6
6
|
|
|
7
7
|
function create_status_window() {
|
|
8
|
-
/*new Insertion.Bottom(
|
|
9
|
-
document.body,
|
|
10
|
-
"<div id='acts_as_monitor_status_window'><%= Rails.root %></div>"
|
|
11
|
-
);*/
|
|
12
8
|
var status_window = $('acts_as_monitor_status_window');
|
|
13
9
|
Position.absolutize(status_window);
|
|
14
10
|
status_window.observe('click', function(ev) {status_window.fade(); });
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: acts_as_monitor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.1.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Andrea Bignozzi
|