-
-
Notifications
You must be signed in to change notification settings - Fork 78.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Meteor, Bootstrap, and Tether #19005
Comments
You can just safely ignore that error. |
CC: @splendido @dandv because this involves Meteor |
I have the exact same error when hosting the Bootstrap v4 alpha 2 Dashboard example on a Django app. So this error might not be specific to Meteor. |
@mazing I'd say, if you also added As a stable solution we might add @mazing could you try see whether changing the order in your |
This worked for me: meteor remove twbs:bootstrap
meteor add coursierprive:tether
meteor add twbs:bootstrap@=4.0.0-alpha2 |
On
https://github.com/orgztion/meteor-global-tether package import a working example: https://github.com/bySabi/neal-sample-meteor |
Asked the Tether folks whether they'd consider publishing a Meteor package: shipshapecode/tether#153 |
What about people who don't want to use tool tips? This error forces everyone to include tether, whether they need it or not. I had the impression tether was opt-in when needed. |
@arechsteiner You want #17201. |
Closing as no longer applicable per #20389. |
@orgztion your repo meteor-global-tether gives a 404. any insight into why's that? have you found another way of providing tether under meteor? |
@diegonc this package is offline cause is not needed. |
Do the following:
Anything in the /public folder can be found by the client browser. |
Well, I hope not to sound rude, but that's a weird dance there and doesn't look very Meteorish 😄 I'd rather do
in some early loaded client file (just like bySabi's workaround but with an actual implementation). But I can't say whether it works, I'm still using the package 😁 |
I followed the angular2 Socially example. Your solution may work but there
is not enough detail for me to try it. Where would I put your code snippet?
Also, I only have 6 months of experience working with meteor so some things
aren't obvious to me.
…On Dec 6, 2016 7:56 PM, "Diego Nieto Cid" ***@***.***> wrote:
Well, I hope not to sound rude, but that's a weird dance there and doesn't
look very Meteorish 😄
I'd rather do
import _Tether from 'tether';
window.Tether = _Tether;
in some early loaded client file (just like bySabi's workaround but with
an actual implementation).
But I can't say whether it works, I'm still using the package 😁
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#19005 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AP9ZRa0yiq6_loYuZzmvFgHtOrg60Mq_ks5rFi5QgaJpZM4HKFF4>
.
|
For me, what set off alarm bells in your solution is that there are two manual steps (cp & script) that one needs to remember each time tether is upgraded to also keep our project in good shape. From my experience, Meteor tends to discourage script tags in index.html and instead relies on its script concatenation & minification process to build a bundle that gets automatically include in the served HTML. If you are using bootstrap from NPM, then you can just drop the two lines I mentioned before the If you are using the atmosphere package then you need a custom package which should be listed before bootstrap in @ everyone |
Thanks Diego. I knew my solution was not optimal but it was the only way I could get it to work. I was able to get bySabi's solution to work in my project. So I am now going to use that. Thank you! |
hi! i use meteor 1.4.4 and i can't install tether , i use npm, and the package but don't work, any clue? |
Locking old closed issue that's veering off onto tangents. |
In Bootstrap v4 alpha 2, I get the error
I have in Meteor tried loading Tether using the package
simply:tether
, but the error message remains.Can I opt to not require Tether since I wont use Bootstrap's tooltips.
The text was updated successfully, but these errors were encountered: