tinymce-rails-imageupload 3.4.8 → 3.4.8.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.
@@ -0,0 +1,7 @@
1
+ ## 3.4.8.1 (March 7, 2012)
2
+
3
+ * Added support for setting height and width for the inserted image
4
+
5
+ ## 3.4.8 (February 29, 2012)
6
+
7
+ * Initial release
data/README.markdown CHANGED
@@ -10,7 +10,7 @@ The icon used for the button comes from the icon set [Silk by famfamfam](http://
10
10
  ## Requirements
11
11
 
12
12
  * Rails >= 3.1
13
- * TinyMCE using the advanced theme
13
+ * TinyMCE using the advanced theme and jQuery
14
14
 
15
15
  ## Setup
16
16
 
@@ -44,6 +44,8 @@ This action gets called with a file parameter creatively called `file`, and must
44
44
  end
45
45
  end
46
46
 
47
+ If the JSON response contains a `width` and/or `height` key, those will be used in the inserted HTML (`<img src="..." width="..." height="...">`), but if those are not present, the inserted HTML is just `<img src="...">`.
48
+
47
49
  ## Versioning
48
50
 
49
51
  The version of this gem will be mirroring the release of `tinymce-rails` it is tested against.
@@ -1,7 +1,7 @@
1
1
  module Tinymce
2
2
  module Rails
3
3
  module Imageupload
4
- VERSION = "3.4.8"
4
+ VERSION = "3.4.8.1"
5
5
  end
6
6
  end
7
7
  end
@@ -23,7 +23,16 @@
23
23
 
24
24
  if(ret.length) {
25
25
  var json = JSON.parse(ret);
26
- tinyMCE.execCommand('mceInsertContent', false, '<br><img src=\'' + json["image"]["url"] + '\' />');
26
+ var imgstr = "<br><img src='" + json["image"]["url"] + "'";
27
+
28
+ if(json["image"]["height"])
29
+ imgstr += " height='" + json["image"]["height"] + "'";
30
+ if(json["image"]["width"])
31
+ imgstr += " width='" + json["image"]["width"] + "'";
32
+
33
+ imgstr += "/>";
34
+
35
+ tinyMCE.execCommand('mceInsertContent', false, imgstr);
27
36
  tinyMCEPopup.close();
28
37
  }
29
38
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tinymce-rails-imageupload
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.8
4
+ version: 3.4.8.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-02-29 00:00:00.000000000 Z
12
+ date: 2012-03-07 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: railties
16
- requirement: &8464640 !ruby/object:Gem::Requirement
16
+ requirement: &10124560 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '3.1'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *8464640
24
+ version_requirements: *10124560
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: tinymce-rails
27
- requirement: &8463960 !ruby/object:Gem::Requirement
27
+ requirement: &10124060 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ~>
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: 3.4.8
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *8463960
35
+ version_requirements: *10124060
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: bundler
38
- requirement: &8463280 !ruby/object:Gem::Requirement
38
+ requirement: &10123600 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ~>
@@ -43,10 +43,10 @@ dependencies:
43
43
  version: 1.0.0
44
44
  type: :development
45
45
  prerelease: false
46
- version_requirements: *8463280
46
+ version_requirements: *10123600
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: rails
49
- requirement: &8462580 !ruby/object:Gem::Requirement
49
+ requirement: &10123140 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
52
  - - ! '>='
@@ -54,7 +54,7 @@ dependencies:
54
54
  version: '3.1'
55
55
  type: :development
56
56
  prerelease: false
57
- version_requirements: *8462580
57
+ version_requirements: *10123140
58
58
  description: TinyMCE plugin for taking image uploads in Rails >= 3.1
59
59
  email:
60
60
  - perchr@northblue.org
@@ -63,6 +63,7 @@ extensions: []
63
63
  extra_rdoc_files: []
64
64
  files:
65
65
  - .gitignore
66
+ - CHANGELOG.markdown
66
67
  - Gemfile
67
68
  - LICENSE
68
69
  - README.markdown