netzke-core 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +5 -2
- data/lib/netzke/action_view_ext.rb +1 -1
- data/lib/netzke/feedback_ghost.rb +1 -1
- data/netzke-core.gemspec +1 -1
- metadata +1 -1
data/CHANGELOG
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
v0.2.1
|
2
|
+
Fixed the path to ext-base-min.js for production mode.
|
3
|
+
Also works in Safari now.
|
4
|
+
|
1
5
|
v0.2.0
|
2
6
|
* Some re-factoring and redesign. Now simple compound widgets can be created on the fly in the controller
|
3
7
|
* Added ext_widget[:quiet] configuration option to suppress widget's feedback
|
@@ -7,8 +11,7 @@ v0.2.0
|
|
7
11
|
* netzke_widget controller class-method renamed into netzke
|
8
12
|
* JS-comments now get stripped also from the extra files that get included in the netzke-* gems.
|
9
13
|
* Permissions joined js_config
|
10
|
-
|
11
|
-
Bug fixes
|
14
|
+
* Bug fixes
|
12
15
|
|
13
16
|
v0.1.4
|
14
17
|
Helpers added to facilitate ExtJS/netzke.js inclusion
|
@@ -7,7 +7,7 @@ module Netzke
|
|
7
7
|
if ENV['RAILS_ENV'] == 'development'
|
8
8
|
res << javascript_include_tag("/extjs/adapter/ext/ext-base.js", "/extjs/ext-all-debug.js")
|
9
9
|
else
|
10
|
-
res << javascript_include_tag("/extjs/
|
10
|
+
res << javascript_include_tag("/extjs/adapter/ext/ext-base.js", "/extjs/ext-all.js")
|
11
11
|
end
|
12
12
|
res << javascript_tag( "Ext.authenticityToken = '#{form_authenticity_token}'") # forgery protection
|
13
13
|
res << javascript_include_tag("/netzke/netzke.js")
|
@@ -22,7 +22,7 @@ module Netzke
|
|
22
22
|
|
23
23
|
var showBox = function(msg, lvl){
|
24
24
|
if (!lvl) lvl = 'notice';
|
25
|
-
var msgCt = Ext.DomHelper.insertFirst(document.body, {class:'netzke-feedback'}, true);
|
25
|
+
var msgCt = Ext.DomHelper.insertFirst(document.body, {'class':'netzke-feedback'}, true);
|
26
26
|
var m = Ext.DomHelper.append(msgCt, {html:createBox(msg,lvl)}, true);
|
27
27
|
m.slideIn('t').pause(2).ghost("b", {remove:true});
|
28
28
|
}
|
data/netzke-core.gemspec
CHANGED