From 612d76c680b97d95fd8e3f5f1554643238fbe3ea Mon Sep 17 00:00:00 2001 From: sabithpocker Date: Thu, 18 Sep 2014 17:49:14 +0530 Subject: [PATCH] Description in comments updated. Was that of GridView earlier. Just copied the sentence from source https://github.com/Famous/famous/blob/master/views/Flipper.js and added a small ine for description of example. --- src/examples/views/Flipper/example.js | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/examples/views/Flipper/example.js b/src/examples/views/Flipper/example.js index 784d974..d574e4c 100644 --- a/src/examples/views/Flipper/example.js +++ b/src/examples/views/Flipper/example.js @@ -2,12 +2,11 @@ * Flipper * ------------- * - * GridLayout is a layout which divides a context into several evenly-sized grid cells. - * If dimensions are provided, the grid is evenly subdivided with children - * cells representing their own context, otherwise the cellSize property is used to compute - * dimensions so that items of cellSize will fit. + * Allows you to link two renderables as front and back sides that can be + * 'flipped' back and forth along a chosen axis. + * Rendering optimizations are automatically handled. * - * In this example, we make a 4x2 grid with 8 surfaces with varying hues. + * In this example, we make a red/blue flipper which flips on click. */ define(function(require, exports, module) { var Engine = require("famous/core/Engine");