Merge branch 'master' into devel

This commit is contained in:
Avital Oliver
2014-03-27 15:47:41 -07:00
10 changed files with 15 additions and 11 deletions

View File

@@ -1 +1 @@
0.8.0-rc3
0.8.0

View File

@@ -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}}

View File

@@ -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 {

View File

@@ -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;
}

View File

@@ -1 +1 @@
none
0.8.0

View File

@@ -1 +1 @@
0.7.2
0.8.0

View File

@@ -1 +1 @@
0.7.2
0.8.0

View File

@@ -1 +1 @@
0.7.2
0.8.0

View File

@@ -1 +1 @@
0.7.2
0.8.0

View File

@@ -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;