Skip to content

Commit 8599b99

Browse files
author
Max Savin
committed
Bug fixes
2 parents b0379b4 + 0607a73 commit 8599b99

File tree

7 files changed

+19
-12
lines changed

7 files changed

+19
-12
lines changed

.meteor/versions

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ [email protected]
2828
2929
3030
31-
meteortoys:toykit@0.2.2
31+
meteortoys:toykit@0.5.0
3232
3333
3434
3535
36-
36+
3737
3838
3939

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
<a href="http://bit.ly/1ARJG4x"><img align="center" src="https://raw.githubusercontent.com/msavin/Mongol/master/documentation/ad.png"></a>
1+
<a href="http://bit.ly/1ARJG4x"><img align="center" src="http://maxsavin.com/sandbox/MeteorToysAd.png"></a>
22

33
JetSetter
44
=========
55

66
Meet JetSetter, the insanely handy development package for Meteor. Starting today, you'll never have to enter the console to play with your Session variables again. Instead, JetSetter lets you view and modify your Session variables in the browser. And because JetSetter is a debugOnly package, it does not compile to production code.
77

88

9-
109
See All Your Sessions at Once
1110
----------------------------
1211
JetSetter will automatically scan for all your Session variables and display them in your browser.

client/_component/component.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ Template.JetSetter_Component.events({
2222
} else {
2323
Session.set("JetSetter_current", target);
2424
}
25-
console.log(this.name);
26-
console.log(target);
25+
2726
},
2827
'click .JetSetter_editor': function (e, t) {
2928
e.stopPropagation();

client/row_create/JetSetter_create.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@ Template.JetSetter_create.events({
22
'click .JetSetter_row': function () {
33
// Focus on input
44
window.setTimeout(function() {
5-
$(".JetSetter_editor_title}").focus();
5+
$(".JetSetter_editor_title").focus();
66
}, 300);
77

88
},
99
'click .JetSetter_button_new': function () {
10+
1011
// get values
1112
var js_key = $(".JetSetter_editor_title").val(),
1213
js_value = $(".JetSetter_editor_create").text(),

package.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Package.describe({
22
name: 'msavin:jetsetter',
33
summary: 'Visual Get/Set Tool for Sessions',
4-
version: '1.0.12',
4+
version: '1.0.15',
55
git: 'https://github.com/msavin/JetSetter.git',
66
documentation: 'README.md',
7-
// debugOnly: true
7+
debugOnly: true
88
});
99

1010
Package.onUse(function(api) {
@@ -29,7 +29,7 @@ Package.onUse(function(api) {
2929
api.versionsFrom('1.0');
3030
api.use(['templating','tracker','session'], 'client');
3131

32-
api.use('meteortoys:toykit@0.3.5');
32+
api.use('meteortoys:toykit@0.5.0');
3333
api.add_files(clientFiles, "client");
3434

3535
if (api.export) {

style/JetSetter.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
.JetSetter_editor {
6161
border-radius: 5px;
6262
height: calc(100% - 36px);
63-
box-shadow: 0 0 0 50px rgba(0,0,0,.35);
63+
box-shadow: 0 0 0 50px rgba(0,0,0,.3);
6464
overflow: hidden;
6565
width: 100%;
6666
}

versions.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,18 @@
88
"base64",
99
"1.0.1"
1010
],
11+
[
12+
"binary-heap",
13+
"1.0.1"
14+
],
1115
[
1216
"blaze",
1317
"2.0.3"
1418
],
19+
[
20+
"callback-hook",
21+
"1.0.1"
22+
],
1523
[
1624
"check",
1725
"1.0.2"
@@ -62,7 +70,7 @@
6270
],
6371
[
6472
"meteortoys:toykit",
65-
"0.2.2"
73+
"0.5.0"
6674
],
6775
[
6876
"minimongo",

0 commit comments

Comments
 (0)