mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Merge branch 'master' into devel
This commit is contained in:
@@ -1 +1 @@
|
||||
0.8.0-rc3
|
||||
0.8.0
|
||||
|
||||
@@ -1432,7 +1432,7 @@ variable every time a new version of your app is loaded.
|
||||
Example:
|
||||
|
||||
// in main.html
|
||||
{{lt}}template name="main>
|
||||
{{lt}}template name="main">
|
||||
<p>We've always been at war with {{dstache}}theEnemy}}.</p>
|
||||
{{lt}}/template>
|
||||
|
||||
@@ -2206,7 +2206,7 @@ data used changes.
|
||||
will continue running in your browser forever. Additionally, if you remove any
|
||||
part of your DOM using any mechanism other than jQuery, the logic to keep that
|
||||
part of the the DOM updated will continue running. To avoid these issues,
|
||||
either avoid directly updating the DOM and ensure that any removals go through
|
||||
either avoid directly updating the DOM or ensure that any removals go through
|
||||
jQuery.
|
||||
{{/warning}}
|
||||
|
||||
|
||||
@@ -212,7 +212,7 @@ var toc = [
|
||||
"Accounts.onCreateUser",
|
||||
"Accounts.validateLoginAttempt",
|
||||
"Accounts.onLogin",
|
||||
{name: "Accounts.onLoginFailure", id: "accounts_onlogin"},
|
||||
{name: "Accounts.onLoginFailure", id: "accounts_onlogin"}
|
||||
],
|
||||
|
||||
{name: "Passwords", id: "accounts_passwords"}, [
|
||||
@@ -380,6 +380,10 @@ Template.nav.sections = function () {
|
||||
var ret = [];
|
||||
var walk = function (items, depth) {
|
||||
_.each(items, function (item) {
|
||||
// Work around (eg) accidental trailing commas leading to spurious holes
|
||||
// in IE8.
|
||||
if (!item)
|
||||
return;
|
||||
if (item instanceof Array)
|
||||
walk(item, depth + 1);
|
||||
else {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
// While galaxy apps are on their own special meteor releases, override
|
||||
// Meteor.release here.
|
||||
if (Meteor.isClient) {
|
||||
Meteor.release = Meteor.release ? "0.7.2" : undefined;
|
||||
Meteor.release = Meteor.release ? "0.8.0" : undefined;
|
||||
}
|
||||
|
||||
@@ -1 +1 @@
|
||||
none
|
||||
0.8.0
|
||||
|
||||
@@ -1 +1 @@
|
||||
0.7.2
|
||||
0.8.0
|
||||
|
||||
@@ -1 +1 @@
|
||||
0.7.2
|
||||
0.8.0
|
||||
|
||||
@@ -1 +1 @@
|
||||
0.7.2
|
||||
0.8.0
|
||||
|
||||
@@ -1 +1 @@
|
||||
0.7.2
|
||||
0.8.0
|
||||
|
||||
@@ -41,7 +41,7 @@ DomUtils.setElementValue = function (node, value) {
|
||||
// match valid OPTION values... and moreover, the OPTION value must be
|
||||
// explicitly given as an attribute, not just as the text. So we hunt for
|
||||
// the OPTION and select it.
|
||||
var options = DomUtils.findAll(node, 'option');
|
||||
var options = $(node).find('option');
|
||||
for (var i = 0; i < options.length; ++i) {
|
||||
if (DomUtils.getElementValue(options[i]) === value) {
|
||||
options[i].selected = true;
|
||||
|
||||
Reference in New Issue
Block a user