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 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/build/adapter/ext/ext-base-min.js", "/extjs/ext-all.js")
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
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{netzke-core}
5
- s.version = "0.2.0"
5
+ s.version = "0.2.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Sergei Kozlov"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: netzke-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sergei Kozlov