socialcalc-rails 0.1.2 → 0.1.3
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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/socialcalc/rails/version.rb +1 -1
- data/vendor/assets/javascripts/socialcalc_plugin.js +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d12cadcda5856eb4069d7eb3dd3de9ad51dd8d2d
|
4
|
+
data.tar.gz: f5a6a9720bd5cdd45761bbfca7d762519a8b984c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aaadd4a4cbfd2995d2eca26c0c7b2994a292bae32b7c6cb1321266067366dc52933da994a1bc377df6618be8e495354f2dfa53fed928e5d82425261996ccf9d9
|
7
|
+
data.tar.gz: 7ce208c34961858fe2fd01f9861e8f55b5f5b6402f20d4134bb2fe5408fda081c744785c3a3500884f0b4051ab62eb6feacbbf8ae324e9c06904e4dd8a386217
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Socialcalc
|
1
|
+
# Socialcalc-rails gem
|
2
2
|
|
3
3
|
[SocialCalc](https://github.com/marcelklehr/socialcalc) is a great JavaScript-based spreadsheet working on web browsers. However, it is a bit difficult to use it with Ruby on Rails applications because there is little information on it. Therefore, I have created a gem that allows you to use SocialCalc spreadsheets on Ruby on Rails application with ease.
|
4
4
|
|
@@ -16,7 +16,7 @@
|
|
16
16
|
control.sheet.ParseSheetSave(content);
|
17
17
|
control.sheet.ScheduleSheetCommands('recalc', false, false);
|
18
18
|
|
19
|
-
key_event_handler = function(event_type, e) {
|
19
|
+
var key_event_handler = function(event_type, e) {
|
20
20
|
if (!$.contains(_spreadsheet_element, e.target)) {
|
21
21
|
e.stopPropagation();
|
22
22
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: socialcalc-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eiji Sakai
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-12-
|
11
|
+
date: 2016-12-25 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Allows you to use Socialcalc, a JavaScript-based spreadsheet, on Ruby
|
14
14
|
on Rails web applications.
|