Просмотр исходного кода

Meteor upgrade to 1.2.1 and HTML reformatted.

Frederic G. MARAND 9 лет назад
Родитель
Сommit
55802bb56f
5 измененных файлов с 102 добавлено и 69 удалено
  1. 4 0
      .meteor/.finished-upgraders
  2. 14 1
      .meteor/packages
  3. 1 1
      .meteor/release
  4. 66 49
      .meteor/versions
  5. 17 18
      image_share.html

+ 4 - 0
.meteor/.finished-upgraders

@@ -6,3 +6,7 @@ notices-for-0.9.0
 notices-for-0.9.1
 0.9.4-platform-file
 notices-for-facebook-graph-api-2
+1.2.0-standard-minifiers-package
+1.2.0-meteor-platform-split
+1.2.0-cordova-changes
+1.2.0-breaking-changes

+ 14 - 1
.meteor/packages

@@ -4,7 +4,20 @@
 # 'meteor add' and 'meteor remove' will edit this file for you,
 # but you can also edit it by hand.
 
-meteor-platform
 autopublish
 insecure
 twbs:bootstrap
+standard-minifiers
+meteor-base
+mobile-experience
+mongo
+blaze-html-templates
+session
+jquery
+tracker
+logging
+reload
+random
+ejson
+spacebars
+check

+ 1 - 1
.meteor/release

@@ -1 +1 @@
-METEOR@1.1.0.2
+METEOR@1.2.1

+ 66 - 49
.meteor/versions

@@ -1,49 +1,66 @@
-autopublish@1.0.3
-autoupdate@1.2.1
-base64@1.0.3
-binary-heap@1.0.3
-blaze@2.1.2
-blaze-tools@1.0.3
-boilerplate-generator@1.0.3
-callback-hook@1.0.3
-check@1.0.5
-ddp@1.1.0
-deps@1.0.7
-ejson@1.0.6
-fastclick@1.0.3
-geojson-utils@1.0.3
-html-tools@1.0.4
-htmljs@1.0.4
-http@1.1.0
-id-map@1.0.3
-insecure@1.0.3
-jquery@1.11.3_2
-json@1.0.3
-launch-screen@1.0.2
-livedata@1.0.13
-logging@1.0.7
-meteor@1.1.6
-meteor-platform@1.2.2
-minifiers@1.1.5
-minimongo@1.0.8
-mobile-status-bar@1.0.3
-mongo@1.1.0
-observe-sequence@1.0.6
-ordered-dict@1.0.3
-random@1.0.3
-reactive-dict@1.1.0
-reactive-var@1.0.5
-reload@1.1.3
-retry@1.0.3
-routepolicy@1.0.5
-session@1.1.0
-spacebars@1.0.6
-spacebars-compiler@1.0.6
-templating@1.1.1
-tracker@1.0.7
-twbs:bootstrap@3.3.5
-ui@1.0.6
-underscore@1.0.3
-url@1.0.4
-webapp@1.2.0
-webapp-hashing@1.0.3
+autopublish@1.0.4
+autoupdate@1.2.4
+babel-compiler@5.8.24_1
+babel-runtime@0.1.4
+base64@1.0.4
+binary-heap@1.0.4
+blaze@2.1.3
+blaze-html-templates@1.0.1
+blaze-tools@1.0.4
+boilerplate-generator@1.0.4
+caching-compiler@1.0.0
+caching-html-compiler@1.0.2
+callback-hook@1.0.4
+check@1.1.0
+ddp@1.2.2
+ddp-client@1.2.1
+ddp-common@1.2.2
+ddp-server@1.2.2
+deps@1.0.9
+diff-sequence@1.0.1
+ecmascript@0.1.6
+ecmascript-runtime@0.2.6
+ejson@1.0.7
+fastclick@1.0.7
+geojson-utils@1.0.4
+hot-code-push@1.0.0
+html-tools@1.0.5
+htmljs@1.0.5
+http@1.1.1
+id-map@1.0.4
+insecure@1.0.4
+jquery@1.11.4
+launch-screen@1.0.4
+livedata@1.0.15
+logging@1.0.8
+meteor@1.1.10
+meteor-base@1.0.1
+minifiers@1.1.7
+minimongo@1.0.10
+mobile-experience@1.0.1
+mobile-status-bar@1.0.6
+mongo@1.1.3
+mongo-id@1.0.1
+npm-mongo@1.4.39_1
+observe-sequence@1.0.7
+ordered-dict@1.0.4
+promise@0.5.1
+random@1.0.5
+reactive-dict@1.1.3
+reactive-var@1.0.6
+reload@1.1.4
+retry@1.0.4
+routepolicy@1.0.6
+session@1.1.1
+spacebars@1.0.7
+spacebars-compiler@1.0.7
+standard-minifiers@1.0.2
+templating@1.1.5
+templating-tools@1.0.0
+tracker@1.0.9
+twbs:bootstrap@3.3.6
+ui@1.0.8
+underscore@1.0.4
+url@1.0.5
+webapp@1.2.3
+webapp-hashing@1.0.5

+ 17 - 18
image_share.html

@@ -5,25 +5,24 @@
 <body>
   <h1>Welcome to coursera!</h1>
   <div class="container">
-  {{> images}}
-</div>
+    {{> images}}
+  </div>
 </body>
 
 <template name="images">
-	<div class="row">
-  {{#each images}}
-  <div class="col-xs-12 col-md-3">
-  	<div class="thumbnail">
+  <div class="row">
+    {{#each images}}
+      <div class="col-xs-12 col-md-3">
+        <div class="thumbnail">
 
-  	 	<img class="js-image" src="{{img_src}}" 
-  		alt="{{img_alt}}"/> 
-  			
-  		<div class="caption">
-        	<h3>Thumbnail label</h3>
-        	<p>description of the image</p>
-     	</div>
-     </div>
-    </div> <!-- / col -->
-  {{/each}}
-</div> <!-- / row -->
-  </template>
+          <img class="js-image" src="{{img_src}}" alt="{{img_alt}}" />
+
+          <div class="caption">
+            <h3>Thumbnail label</h3>
+            <p>description of the image</p>
+          </div>
+        </div>
+      </div> <!-- / col -->
+    {{/each}}
+  </div> <!-- / row -->
+</template>