markuapad 0.2.3 → 0.2.4
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/app/assets/javascripts/markuapad.js +1 -1
- data/build/app.js +1 -1
- data/build/dist.js +1 -1
- data/build/web.js +1 -1
- data/lib/markuapad/version.rb +1 -1
- data/src/jsx/toolbar.jsx +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a73e60eb047f8610c7037366c6a304a8673b5290
|
|
4
|
+
data.tar.gz: e3168593c9a14df764d8d5cde3fa205b08e55a6f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 24be6acf0a9cc7596ec77b72dd83090512dc5a6651c08a0877fa7008db859e2dd20b20d0bdd7f87bdb147ccb565f41276b09415adb26b75d903186c99972d7be
|
|
7
|
+
data.tar.gz: 55d80d867f9b75f76352eb066731c56ca61e68cf788a9457edd1c32a5de4dd4a93e27dda7bbfc179a927c0c06a574b6b0d747bca5d5dd4a2aae2a262fa4fac08
|
|
@@ -55896,7 +55896,7 @@
|
|
|
55896
55896
|
|
|
55897
55897
|
// Set up the timer to clear the flash message
|
|
55898
55898
|
_this.timer = setTimeout(function () {
|
|
55899
|
-
_this.setState({
|
|
55899
|
+
_this.setState({ flash: null });
|
|
55900
55900
|
}, 5000);
|
|
55901
55901
|
});
|
|
55902
55902
|
}
|
data/build/app.js
CHANGED
|
@@ -55881,7 +55881,7 @@
|
|
|
55881
55881
|
|
|
55882
55882
|
// Set up the timer to clear the flash message
|
|
55883
55883
|
_this.timer = setTimeout(function () {
|
|
55884
|
-
_this.setState({
|
|
55884
|
+
_this.setState({ flash: null });
|
|
55885
55885
|
}, 5000);
|
|
55886
55886
|
});
|
|
55887
55887
|
}
|
data/build/dist.js
CHANGED
|
@@ -55896,7 +55896,7 @@
|
|
|
55896
55896
|
|
|
55897
55897
|
// Set up the timer to clear the flash message
|
|
55898
55898
|
_this.timer = setTimeout(function () {
|
|
55899
|
-
_this.setState({
|
|
55899
|
+
_this.setState({ flash: null });
|
|
55900
55900
|
}, 5000);
|
|
55901
55901
|
});
|
|
55902
55902
|
}
|
data/build/web.js
CHANGED
|
@@ -55889,7 +55889,7 @@
|
|
|
55889
55889
|
|
|
55890
55890
|
// Set up the timer to clear the flash message
|
|
55891
55891
|
_this.timer = setTimeout(function () {
|
|
55892
|
-
_this.setState({
|
|
55892
|
+
_this.setState({ flash: null });
|
|
55893
55893
|
}, 5000);
|
|
55894
55894
|
});
|
|
55895
55895
|
}
|
data/lib/markuapad/version.rb
CHANGED
data/src/jsx/toolbar.jsx
CHANGED