http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/8162f8c2/doc/themes/weex/source/js/example.js
----------------------------------------------------------------------
diff --git a/doc/themes/weex/source/js/example.js 
b/doc/themes/weex/source/js/example.js
deleted file mode 100644
index 43012c4..0000000
--- a/doc/themes/weex/source/js/example.js
+++ /dev/null
@@ -1,37 +0,0 @@
-;(function () {
-  var str = '<!DOCTYPE html>' +
-            '<html>' +
-            '<head>' +
-              '<meta charset="utf-8">' +
-              '<title>Weex Vue Demo</title>' +
-              '<meta name="viewport" content="width=750, user-scalable=no">' +
-              '<meta name="apple-mobile-web-app-capable" content="yes" />' +
-              '<meta name="apple-mobile-web-app-status-bar-style" 
content="black" />' +
-              '<meta name="apple-touch-fullscreen" content="yes" />' +
-              '<meta name="format-detection" content="telephone=no, email=no" 
/>' +
-              '<style>' +
-                'html, body {' +
-                  'height: 100%;' +
-                  'width: 100%;' +
-                '}' +
-              '</style>' +
-              '<script 
src="https://unpkg.com/vue/dist/vue.runtime.js";></script>' +
-              '<script 
src="https://unpkg.com/weex-vue-render@0.10.0/dist/index.min.js";></script>' +
-            '</head>' +
-            '<body>' +
-              '<div id="root"></div>' +
-              '<script>' +
-                  'var url = window.parent.WEB_BUNDLE_URL;' +
-                  'var jsTag = document.createElement("script");' +
-                  'jsTag.src = url;' +
-                  'document.body.appendChild(jsTag);' +
-              '</script>' +
-            '</body>' +
-            '</html>'
-
-
-  var iframe = document.getElementById('iframe')
-  var doc = iframe.contentDocument || iframe.contentWindow.document
-
-  doc.write(str)
-}());
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/8162f8c2/doc/themes/weex/source/js/examples/a.web.js
----------------------------------------------------------------------
diff --git a/doc/themes/weex/source/js/examples/a.web.js 
b/doc/themes/weex/source/js/examples/a.web.js
deleted file mode 100644
index ad78e47..0000000
--- a/doc/themes/weex/source/js/examples/a.web.js
+++ /dev/null
@@ -1,528 +0,0 @@
-/******/ (function(modules) { // webpackBootstrap
-/******/       // The module cache
-/******/       var installedModules = {};
-
-/******/       // The require function
-/******/       function __webpack_require__(moduleId) {
-
-/******/               // Check if module is in cache
-/******/               if(installedModules[moduleId])
-/******/                       return installedModules[moduleId].exports;
-
-/******/               // Create a new module (and put it into the cache)
-/******/               var module = installedModules[moduleId] = {
-/******/                       exports: {},
-/******/                       id: moduleId,
-/******/                       loaded: false
-/******/               };
-
-/******/               // Execute the module function
-/******/               modules[moduleId].call(module.exports, module, 
module.exports, __webpack_require__);
-
-/******/               // Flag the module as loaded
-/******/               module.loaded = true;
-
-/******/               // Return the exports of the module
-/******/               return module.exports;
-/******/       }
-
-
-/******/       // expose the modules object (__webpack_modules__)
-/******/       __webpack_require__.m = modules;
-
-/******/       // expose the module cache
-/******/       __webpack_require__.c = installedModules;
-
-/******/       // __webpack_public_path__
-/******/       __webpack_require__.p = "";
-
-/******/       // Load entry module and return exports
-/******/       return __webpack_require__(0);
-/******/ })
-/************************************************************************/
-/******/ ([
-/* 0 */
-/***/ function(module, exports, __webpack_require__) {
-
-       'use strict';
-
-       var _App = __webpack_require__(1);
-
-       var _App2 = _interopRequireDefault(_App);
-
-       function _interopRequireDefault(obj) { return obj && obj.__esModule ? 
obj : { default: obj }; }
-
-       _App2.default.el = '#root';
-       new Vue(_App2.default);
-
-/***/ },
-/* 1 */
-/***/ function(module, exports, __webpack_require__) {
-
-       var __vue_exports__, __vue_options__
-       var __vue_styles__ = {}
-
-       /* script */
-       __vue_exports__ = __webpack_require__(2)
-
-       /* template */
-       var __vue_template__ = __webpack_require__(9)
-       __vue_options__ = __vue_exports__ = __vue_exports__ || {}
-       if (
-         typeof __vue_exports__.default === "object" ||
-         typeof __vue_exports__.default === "function"
-       ) {
-       if (Object.keys(__vue_exports__).some(function (key) { return key !== 
"default" && key !== "__esModule" })) {console.error("named exports are not 
supported in *.vue files.")}
-       __vue_options__ = __vue_exports__ = __vue_exports__.default
-       }
-       if (typeof __vue_options__ === "function") {
-         __vue_options__ = __vue_options__.options
-       }
-       __vue_options__.__file = 
"/Users/YunDong/Projects/weex-vue-demo/src/App.vue"
-       __vue_options__.render = __vue_template__.render
-       __vue_options__.staticRenderFns = __vue_template__.staticRenderFns
-
-       /* hot reload */
-       if (false) {(function () {
-         var hotAPI = require("vue-loader/node_modules/vue-hot-reload-api")
-         hotAPI.install(require("vue"), false)
-         if (!hotAPI.compatible) return
-         module.hot.accept()
-         if (!module.hot.data) {
-           hotAPI.createRecord("data-v-474ddc19", __vue_options__)
-         } else {
-           hotAPI.reload("data-v-474ddc19", __vue_options__)
-         }
-       })()}
-       if (__vue_options__.functional) {console.error("[vue-loader] App.vue: 
functional components are not supported and should be defined in plain js files 
using render functions.")}
-
-       module.exports = __vue_exports__
-
-
-/***/ },
-/* 2 */
-/***/ function(module, exports, __webpack_require__) {
-
-       'use strict';
-
-       Object.defineProperty(exports, "__esModule", {
-         value: true
-       });
-
-       var _sample = __webpack_require__(3);
-
-       var _sample2 = _interopRequireDefault(_sample);
-
-       function _interopRequireDefault(obj) { return obj && obj.__esModule ? 
obj : { default: obj }; }
-
-       exports.default = {
-         components: { Example: _sample2.default }
-       }; //
-       //
-       //
-       //
-
-/***/ },
-/* 3 */
-/***/ function(module, exports, __webpack_require__) {
-
-       var __vue_exports__, __vue_options__
-       var __vue_styles__ = {}
-
-       /* styles */
-       __webpack_require__(4)
-
-       /* template */
-       var __vue_template__ = __webpack_require__(8)
-       __vue_options__ = __vue_exports__ = __vue_exports__ || {}
-       if (
-         typeof __vue_exports__.default === "object" ||
-         typeof __vue_exports__.default === "function"
-       ) {
-       if (Object.keys(__vue_exports__).some(function (key) { return key !== 
"default" && key !== "__esModule" })) {console.error("named exports are not 
supported in *.vue files.")}
-       __vue_options__ = __vue_exports__ = __vue_exports__.default
-       }
-       if (typeof __vue_options__ === "function") {
-         __vue_options__ = __vue_options__.options
-       }
-       __vue_options__.__file = 
"/Users/YunDong/Projects/weex-vue-demo/src/components/a/sample.vue"
-       __vue_options__.render = __vue_template__.render
-       __vue_options__.staticRenderFns = __vue_template__.staticRenderFns
-       __vue_options__._scopeId = "data-v-06da9fee"
-
-       /* hot reload */
-       if (false) {(function () {
-         var hotAPI = require("vue-loader/node_modules/vue-hot-reload-api")
-         hotAPI.install(require("vue"), false)
-         if (!hotAPI.compatible) return
-         module.hot.accept()
-         if (!module.hot.data) {
-           hotAPI.createRecord("data-v-06da9fee", __vue_options__)
-         } else {
-           hotAPI.reload("data-v-06da9fee", __vue_options__)
-         }
-       })()}
-       if (__vue_options__.functional) {console.error("[vue-loader] 
sample.vue: functional components are not supported and should be defined in 
plain js files using render functions.")}
-
-       module.exports = __vue_exports__
-
-
-/***/ },
-/* 4 */
-/***/ function(module, exports, __webpack_require__) {
-
-       // style-loader: Adds some css to the DOM by adding a <style> tag
-
-       // load the styles
-       var content = __webpack_require__(5);
-       if(typeof content === 'string') content = [[module.id, content, '']];
-       // add the styles to the DOM
-       var update = __webpack_require__(7)(content, {});
-       if(content.locals) module.exports = content.locals;
-       // Hot Module Replacement
-       if(false) {
-               // When the styles change, update the <style> tags
-               if(!content.locals) {
-                       
module.hot.accept("!!./../../../node_modules/css-loader/index.js!./../../../node_modules/vue-loader/lib/style-rewriter.js?id=data-v-06da9fee&scoped=true!./../../../node_modules/vue-loader/lib/selector.js?type=styles&index=0!./sample.vue",
 function() {
-                               var newContent = 
require("!!./../../../node_modules/css-loader/index.js!./../../../node_modules/vue-loader/lib/style-rewriter.js?id=data-v-06da9fee&scoped=true!./../../../node_modules/vue-loader/lib/selector.js?type=styles&index=0!./sample.vue");
-                               if(typeof newContent === 'string') newContent = 
[[module.id, newContent, '']];
-                               update(newContent);
-                       });
-               }
-               // When the module is disposed, remove the <style> tags
-               module.hot.dispose(function() { update(); });
-       }
-
-/***/ },
-/* 5 */
-/***/ function(module, exports, __webpack_require__) {
-
-       exports = module.exports = __webpack_require__(6)();
-       // imports
-
-
-       // module
-       exports.push([module.id, "\n.wrapper[data-v-06da9fee] {\n  
flex-direction: column;\n  justify-content: 
center;\n}\n.button[data-v-06da9fee] {\n  width: 450px;\n  margin-top: 30px;\n  
margin-left: 150px;\n  padding-top: 20px;\n  padding-bottom: 20px;\n  
border-width: 2px;\n  border-style: solid;\n  border-color: #DDDDDD;\n  
background-color: #F5F5F5\n}\n.text[data-v-06da9fee] {\n  font-size: 60px;\n  
color: #666666;\n  text-align: center;\n}\n", ""]);
-
-       // exports
-
-
-/***/ },
-/* 6 */
-/***/ function(module, exports) {
-
-       /*
-               MIT License http://www.opensource.org/licenses/mit-license.php
-               Author Tobias Koppers @sokra
-       */
-       // css base code, injected by the css-loader
-       module.exports = function() {
-               var list = [];
-
-               // return the list of modules as css string
-               list.toString = function toString() {
-                       var result = [];
-                       for(var i = 0; i < this.length; i++) {
-                               var item = this[i];
-                               if(item[2]) {
-                                       result.push("@media " + item[2] + "{" + 
item[1] + "}");
-                               } else {
-                                       result.push(item[1]);
-                               }
-                       }
-                       return result.join("");
-               };
-
-               // import a list of modules into the list
-               list.i = function(modules, mediaQuery) {
-                       if(typeof modules === "string")
-                               modules = [[null, modules, ""]];
-                       var alreadyImportedModules = {};
-                       for(var i = 0; i < this.length; i++) {
-                               var id = this[i][0];
-                               if(typeof id === "number")
-                                       alreadyImportedModules[id] = true;
-                       }
-                       for(i = 0; i < modules.length; i++) {
-                               var item = modules[i];
-                               // skip already imported module
-                               // this implementation is not 100% perfect for 
weird media query combinations
-                               //  when a module is imported multiple times 
with different media queries.
-                               //  I hope this will never occur (Hey this way 
we have smaller bundles)
-                               if(typeof item[0] !== "number" || 
!alreadyImportedModules[item[0]]) {
-                                       if(mediaQuery && !item[2]) {
-                                               item[2] = mediaQuery;
-                                       } else if(mediaQuery) {
-                                               item[2] = "(" + item[2] + ") 
and (" + mediaQuery + ")";
-                                       }
-                                       list.push(item);
-                               }
-                       }
-               };
-               return list;
-       };
-
-
-/***/ },
-/* 7 */
-/***/ function(module, exports, __webpack_require__) {
-
-       /*
-               MIT License http://www.opensource.org/licenses/mit-license.php
-               Author Tobias Koppers @sokra
-       */
-       var stylesInDom = {},
-               memoize = function(fn) {
-                       var memo;
-                       return function () {
-                               if (typeof memo === "undefined") memo = 
fn.apply(this, arguments);
-                               return memo;
-                       };
-               },
-               isOldIE = memoize(function() {
-                       return /msie 
[6-9]\b/.test(window.navigator.userAgent.toLowerCase());
-               }),
-               getHeadElement = memoize(function () {
-                       return document.head || 
document.getElementsByTagName("head")[0];
-               }),
-               singletonElement = null,
-               singletonCounter = 0,
-               styleElementsInsertedAtTop = [];
-
-       module.exports = function(list, options) {
-               if(false) {
-                       if(typeof document !== "object") throw new Error("The 
style-loader cannot be used in a non-browser environment");
-               }
-
-               options = options || {};
-               // Force single-tag solution on IE6-9, which has a hard limit 
on the # of <style>
-               // tags it will allow on a page
-               if (typeof options.singleton === "undefined") options.singleton 
= isOldIE();
-
-               // By default, add <style> tags to the bottom of <head>.
-               if (typeof options.insertAt === "undefined") options.insertAt = 
"bottom";
-
-               var styles = listToStyles(list);
-               addStylesToDom(styles, options);
-
-               return function update(newList) {
-                       var mayRemove = [];
-                       for(var i = 0; i < styles.length; i++) {
-                               var item = styles[i];
-                               var domStyle = stylesInDom[item.id];
-                               domStyle.refs--;
-                               mayRemove.push(domStyle);
-                       }
-                       if(newList) {
-                               var newStyles = listToStyles(newList);
-                               addStylesToDom(newStyles, options);
-                       }
-                       for(var i = 0; i < mayRemove.length; i++) {
-                               var domStyle = mayRemove[i];
-                               if(domStyle.refs === 0) {
-                                       for(var j = 0; j < 
domStyle.parts.length; j++)
-                                               domStyle.parts[j]();
-                                       delete stylesInDom[domStyle.id];
-                               }
-                       }
-               };
-       }
-
-       function addStylesToDom(styles, options) {
-               for(var i = 0; i < styles.length; i++) {
-                       var item = styles[i];
-                       var domStyle = stylesInDom[item.id];
-                       if(domStyle) {
-                               domStyle.refs++;
-                               for(var j = 0; j < domStyle.parts.length; j++) {
-                                       domStyle.parts[j](item.parts[j]);
-                               }
-                               for(; j < item.parts.length; j++) {
-                                       
domStyle.parts.push(addStyle(item.parts[j], options));
-                               }
-                       } else {
-                               var parts = [];
-                               for(var j = 0; j < item.parts.length; j++) {
-                                       parts.push(addStyle(item.parts[j], 
options));
-                               }
-                               stylesInDom[item.id] = {id: item.id, refs: 1, 
parts: parts};
-                       }
-               }
-       }
-
-       function listToStyles(list) {
-               var styles = [];
-               var newStyles = {};
-               for(var i = 0; i < list.length; i++) {
-                       var item = list[i];
-                       var id = item[0];
-                       var css = item[1];
-                       var media = item[2];
-                       var sourceMap = item[3];
-                       var part = {css: css, media: media, sourceMap: 
sourceMap};
-                       if(!newStyles[id])
-                               styles.push(newStyles[id] = {id: id, parts: 
[part]});
-                       else
-                               newStyles[id].parts.push(part);
-               }
-               return styles;
-       }
-
-       function insertStyleElement(options, styleElement) {
-               var head = getHeadElement();
-               var lastStyleElementInsertedAtTop = 
styleElementsInsertedAtTop[styleElementsInsertedAtTop.length - 1];
-               if (options.insertAt === "top") {
-                       if(!lastStyleElementInsertedAtTop) {
-                               head.insertBefore(styleElement, 
head.firstChild);
-                       } else if(lastStyleElementInsertedAtTop.nextSibling) {
-                               head.insertBefore(styleElement, 
lastStyleElementInsertedAtTop.nextSibling);
-                       } else {
-                               head.appendChild(styleElement);
-                       }
-                       styleElementsInsertedAtTop.push(styleElement);
-               } else if (options.insertAt === "bottom") {
-                       head.appendChild(styleElement);
-               } else {
-                       throw new Error("Invalid value for parameter 
'insertAt'. Must be 'top' or 'bottom'.");
-               }
-       }
-
-       function removeStyleElement(styleElement) {
-               styleElement.parentNode.removeChild(styleElement);
-               var idx = styleElementsInsertedAtTop.indexOf(styleElement);
-               if(idx >= 0) {
-                       styleElementsInsertedAtTop.splice(idx, 1);
-               }
-       }
-
-       function createStyleElement(options) {
-               var styleElement = document.createElement("style");
-               styleElement.type = "text/css";
-               insertStyleElement(options, styleElement);
-               return styleElement;
-       }
-
-       function addStyle(obj, options) {
-               var styleElement, update, remove;
-
-               if (options.singleton) {
-                       var styleIndex = singletonCounter++;
-                       styleElement = singletonElement || (singletonElement = 
createStyleElement(options));
-                       update = applyToSingletonTag.bind(null, styleElement, 
styleIndex, false);
-                       remove = applyToSingletonTag.bind(null, styleElement, 
styleIndex, true);
-               } else {
-                       styleElement = createStyleElement(options);
-                       update = applyToTag.bind(null, styleElement);
-                       remove = function() {
-                               removeStyleElement(styleElement);
-                       };
-               }
-
-               update(obj);
-
-               return function updateStyle(newObj) {
-                       if(newObj) {
-                               if(newObj.css === obj.css && newObj.media === 
obj.media && newObj.sourceMap === obj.sourceMap)
-                                       return;
-                               update(obj = newObj);
-                       } else {
-                               remove();
-                       }
-               };
-       }
-
-       var replaceText = (function () {
-               var textStore = [];
-
-               return function (index, replacement) {
-                       textStore[index] = replacement;
-                       return textStore.filter(Boolean).join('\n');
-               };
-       })();
-
-       function applyToSingletonTag(styleElement, index, remove, obj) {
-               var css = remove ? "" : obj.css;
-
-               if (styleElement.styleSheet) {
-                       styleElement.styleSheet.cssText = replaceText(index, 
css);
-               } else {
-                       var cssNode = document.createTextNode(css);
-                       var childNodes = styleElement.childNodes;
-                       if (childNodes[index]) 
styleElement.removeChild(childNodes[index]);
-                       if (childNodes.length) {
-                               styleElement.insertBefore(cssNode, 
childNodes[index]);
-                       } else {
-                               styleElement.appendChild(cssNode);
-                       }
-               }
-       }
-
-       function applyToTag(styleElement, obj) {
-               var css = obj.css;
-               var media = obj.media;
-               var sourceMap = obj.sourceMap;
-
-               if (media) {
-                       styleElement.setAttribute("media", media);
-               }
-
-               if (sourceMap) {
-                       // 
https://developer.chrome.com/devtools/docs/javascript-debugging
-                       // this makes source maps inside style tags work 
properly in Chrome
-                       css += '\n/*# sourceURL=' + sourceMap.sources[0] + ' 
*/';
-                       // http://stackoverflow.com/a/26603875
-                       css += "\n/*# 
sourceMappingURL=data:application/json;base64," + 
btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))) + " */";
-               }
-
-               if (styleElement.styleSheet) {
-                       styleElement.styleSheet.cssText = css;
-               } else {
-                       while(styleElement.firstChild) {
-                               
styleElement.removeChild(styleElement.firstChild);
-                       }
-                       styleElement.appendChild(document.createTextNode(css));
-               }
-       }
-
-
-/***/ },
-/* 8 */
-/***/ function(module, exports, __webpack_require__) {
-
-       module.exports={render:function (){var _vm=this;var 
_h=_vm.$createElement;var _c=_vm._self._c||_h;
-         return _c('div', {
-           staticClass: "wrapper"
-         }, [_c('a', {
-           staticClass: "button",
-           attrs: {
-             "href": 
"http://dotwe.org/raw/dist/3e0e40f9ddad79f98cd236753965ffd8.js";
-           }
-         }, [_c('text', {
-           staticClass: "text"
-         }, [_vm._v("Jump")])])])
-       },staticRenderFns: []}
-       module.exports.render._withStripped = true
-       if (false) {
-         module.hot.accept()
-         if (module.hot.data) {
-            
require("vue-loader/node_modules/vue-hot-reload-api").rerender("data-v-06da9fee",
 module.exports)
-         }
-       }
-
-/***/ },
-/* 9 */
-/***/ function(module, exports, __webpack_require__) {
-
-       module.exports={render:function (){var _vm=this;var 
_h=_vm.$createElement;var _c=_vm._self._c||_h;
-         return _c('example')
-       },staticRenderFns: []}
-       module.exports.render._withStripped = true
-       if (false) {
-         module.hot.accept()
-         if (module.hot.data) {
-            
require("vue-loader/node_modules/vue-hot-reload-api").rerender("data-v-474ddc19",
 module.exports)
-         }
-       }
-
-/***/ }
-/******/ ]);
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/8162f8c2/doc/themes/weex/source/js/examples/a.weex.js
----------------------------------------------------------------------
diff --git a/doc/themes/weex/source/js/examples/a.weex.js 
b/doc/themes/weex/source/js/examples/a.weex.js
deleted file mode 100644
index e8e6787..0000000
--- a/doc/themes/weex/source/js/examples/a.weex.js
+++ /dev/null
@@ -1,198 +0,0 @@
-// { "framework": "Vue" }
-
-/******/ (function(modules) { // webpackBootstrap
-/******/       // The module cache
-/******/       var installedModules = {};
-
-/******/       // The require function
-/******/       function __webpack_require__(moduleId) {
-
-/******/               // Check if module is in cache
-/******/               if(installedModules[moduleId])
-/******/                       return installedModules[moduleId].exports;
-
-/******/               // Create a new module (and put it into the cache)
-/******/               var module = installedModules[moduleId] = {
-/******/                       exports: {},
-/******/                       id: moduleId,
-/******/                       loaded: false
-/******/               };
-
-/******/               // Execute the module function
-/******/               modules[moduleId].call(module.exports, module, 
module.exports, __webpack_require__);
-
-/******/               // Flag the module as loaded
-/******/               module.loaded = true;
-
-/******/               // Return the exports of the module
-/******/               return module.exports;
-/******/       }
-
-
-/******/       // expose the modules object (__webpack_modules__)
-/******/       __webpack_require__.m = modules;
-
-/******/       // expose the module cache
-/******/       __webpack_require__.c = installedModules;
-
-/******/       // __webpack_public_path__
-/******/       __webpack_require__.p = "";
-
-/******/       // Load entry module and return exports
-/******/       return __webpack_require__(0);
-/******/ })
-/************************************************************************/
-/******/ ([
-/* 0 */
-/***/ function(module, exports, __webpack_require__) {
-
-       var __vue_exports__, __vue_options__
-       var __vue_styles__ = []
-
-       /* script */
-       __vue_exports__ = __webpack_require__(1)
-
-       /* template */
-       var __vue_template__ = __webpack_require__(5)
-       __vue_options__ = __vue_exports__ = __vue_exports__ || {}
-       if (
-         typeof __vue_exports__.default === "object" ||
-         typeof __vue_exports__.default === "function"
-       ) {
-       if (Object.keys(__vue_exports__).some(function (key) { return key !== 
"default" && key !== "__esModule" })) {console.error("named exports are not 
supported in *.vue files.")}
-       __vue_options__ = __vue_exports__ = __vue_exports__.default
-       }
-       if (typeof __vue_options__ === "function") {
-         __vue_options__ = __vue_options__.options
-       }
-       __vue_options__.__file = 
"/Users/YunDong/Projects/weex-vue-demo/src/App.vue"
-       __vue_options__.render = __vue_template__.render
-       __vue_options__.staticRenderFns = __vue_template__.staticRenderFns
-       __vue_options__.style = __vue_options__.style || {}
-       __vue_styles__.forEach(function (module) {
-       for (var name in module) {
-       __vue_options__.style[name] = module[name]
-       }
-       })
-
-       module.exports = __vue_exports__
-       module.exports.el = 'body'
-       new Vue(module.exports)
-
-
-/***/ },
-/* 1 */
-/***/ function(module, exports, __webpack_require__) {
-
-       'use strict';
-
-       Object.defineProperty(exports, "__esModule", {
-         value: true
-       });
-
-       var _sample = __webpack_require__(2);
-
-       var _sample2 = _interopRequireDefault(_sample);
-
-       function _interopRequireDefault(obj) { return obj && obj.__esModule ? 
obj : { default: obj }; }
-
-       exports.default = {
-         components: { Example: _sample2.default }
-       }; //
-       //
-       //
-       //
-
-/***/ },
-/* 2 */
-/***/ function(module, exports, __webpack_require__) {
-
-       var __vue_exports__, __vue_options__
-       var __vue_styles__ = []
-
-       /* styles */
-       __vue_styles__.push(__webpack_require__(3)
-       )
-
-       /* template */
-       var __vue_template__ = __webpack_require__(4)
-       __vue_options__ = __vue_exports__ = __vue_exports__ || {}
-       if (
-         typeof __vue_exports__.default === "object" ||
-         typeof __vue_exports__.default === "function"
-       ) {
-       if (Object.keys(__vue_exports__).some(function (key) { return key !== 
"default" && key !== "__esModule" })) {console.error("named exports are not 
supported in *.vue files.")}
-       __vue_options__ = __vue_exports__ = __vue_exports__.default
-       }
-       if (typeof __vue_options__ === "function") {
-         __vue_options__ = __vue_options__.options
-       }
-       __vue_options__.__file = 
"/Users/YunDong/Projects/weex-vue-demo/src/components/a/sample.vue"
-       __vue_options__.render = __vue_template__.render
-       __vue_options__.staticRenderFns = __vue_template__.staticRenderFns
-       __vue_options__.style = __vue_options__.style || {}
-       __vue_styles__.forEach(function (module) {
-       for (var name in module) {
-       __vue_options__.style[name] = module[name]
-       }
-       })
-
-       module.exports = __vue_exports__
-
-
-/***/ },
-/* 3 */
-/***/ function(module, exports) {
-
-       module.exports = {
-         "wrapper": {
-           "flexDirection": "column",
-           "justifyContent": "center"
-         },
-         "button": {
-           "width": 450,
-           "marginTop": 30,
-           "marginLeft": 150,
-           "paddingTop": 20,
-           "paddingBottom": 20,
-           "borderWidth": 2,
-           "borderStyle": "solid",
-           "borderColor": "#DDDDDD",
-           "backgroundColor": "#F5F5F5"
-         },
-         "text": {
-           "fontSize": 60,
-           "color": "#666666",
-           "textAlign": "center"
-         }
-       }
-
-/***/ },
-/* 4 */
-/***/ function(module, exports) {
-
-       module.exports={render:function (){var _vm=this;var 
_h=_vm.$createElement;var _c=_vm._self._c||_h;
-         return _h('div', {
-           staticClass: ["wrapper"]
-         }, [_h('a', {
-           staticClass: ["button"],
-           attrs: {
-             "href": 
"http://dotwe.org/raw/dist/3e0e40f9ddad79f98cd236753965ffd8.js";
-           }
-         }, [_h('text', {
-           staticClass: ["text"]
-         }, ["Jump"])])])
-       },staticRenderFns: []}
-       module.exports.render._withStripped = true
-
-/***/ },
-/* 5 */
-/***/ function(module, exports) {
-
-       module.exports={render:function (){var _vm=this;var 
_h=_vm.$createElement;var _c=_vm._self._c||_h;
-         return _h('example')
-       },staticRenderFns: []}
-       module.exports.render._withStripped = true
-
-/***/ }
-/******/ ]);
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/8162f8c2/doc/themes/weex/source/js/examples/animation.web.js
----------------------------------------------------------------------
diff --git a/doc/themes/weex/source/js/examples/animation.web.js 
b/doc/themes/weex/source/js/examples/animation.web.js
deleted file mode 100644
index 3258a2b..0000000
--- a/doc/themes/weex/source/js/examples/animation.web.js
+++ /dev/null
@@ -1,569 +0,0 @@
-/******/ (function(modules) { // webpackBootstrap
-/******/       // The module cache
-/******/       var installedModules = {};
-
-/******/       // The require function
-/******/       function __webpack_require__(moduleId) {
-
-/******/               // Check if module is in cache
-/******/               if(installedModules[moduleId])
-/******/                       return installedModules[moduleId].exports;
-
-/******/               // Create a new module (and put it into the cache)
-/******/               var module = installedModules[moduleId] = {
-/******/                       exports: {},
-/******/                       id: moduleId,
-/******/                       loaded: false
-/******/               };
-
-/******/               // Execute the module function
-/******/               modules[moduleId].call(module.exports, module, 
module.exports, __webpack_require__);
-
-/******/               // Flag the module as loaded
-/******/               module.loaded = true;
-
-/******/               // Return the exports of the module
-/******/               return module.exports;
-/******/       }
-
-
-/******/       // expose the modules object (__webpack_modules__)
-/******/       __webpack_require__.m = modules;
-
-/******/       // expose the module cache
-/******/       __webpack_require__.c = installedModules;
-
-/******/       // __webpack_public_path__
-/******/       __webpack_require__.p = "";
-
-/******/       // Load entry module and return exports
-/******/       return __webpack_require__(0);
-/******/ })
-/************************************************************************/
-/******/ ([
-/* 0 */
-/***/ function(module, exports, __webpack_require__) {
-
-       'use strict';
-
-       var _App = __webpack_require__(1);
-
-       var _App2 = _interopRequireDefault(_App);
-
-       function _interopRequireDefault(obj) { return obj && obj.__esModule ? 
obj : { default: obj }; }
-
-       _App2.default.el = '#root';
-       new Vue(_App2.default);
-
-/***/ },
-/* 1 */
-/***/ function(module, exports, __webpack_require__) {
-
-       var __vue_exports__, __vue_options__
-       var __vue_styles__ = {}
-
-       /* script */
-       __vue_exports__ = __webpack_require__(2)
-
-       /* template */
-       var __vue_template__ = __webpack_require__(10)
-       __vue_options__ = __vue_exports__ = __vue_exports__ || {}
-       if (
-         typeof __vue_exports__.default === "object" ||
-         typeof __vue_exports__.default === "function"
-       ) {
-       if (Object.keys(__vue_exports__).some(function (key) { return key !== 
"default" && key !== "__esModule" })) {console.error("named exports are not 
supported in *.vue files.")}
-       __vue_options__ = __vue_exports__ = __vue_exports__.default
-       }
-       if (typeof __vue_options__ === "function") {
-         __vue_options__ = __vue_options__.options
-       }
-       __vue_options__.__file = 
"/Users/YunDong/Projects/weex-vue-demo/src/App.vue"
-       __vue_options__.render = __vue_template__.render
-       __vue_options__.staticRenderFns = __vue_template__.staticRenderFns
-
-       /* hot reload */
-       if (false) {(function () {
-         var hotAPI = require("vue-loader/node_modules/vue-hot-reload-api")
-         hotAPI.install(require("vue"), false)
-         if (!hotAPI.compatible) return
-         module.hot.accept()
-         if (!module.hot.data) {
-           hotAPI.createRecord("data-v-474ddc19", __vue_options__)
-         } else {
-           hotAPI.reload("data-v-474ddc19", __vue_options__)
-         }
-       })()}
-       if (__vue_options__.functional) {console.error("[vue-loader] App.vue: 
functional components are not supported and should be defined in plain js files 
using render functions.")}
-
-       module.exports = __vue_exports__
-
-
-/***/ },
-/* 2 */
-/***/ function(module, exports, __webpack_require__) {
-
-       'use strict';
-
-       Object.defineProperty(exports, "__esModule", {
-         value: true
-       });
-
-       var _animation = __webpack_require__(3);
-
-       var _animation2 = _interopRequireDefault(_animation);
-
-       function _interopRequireDefault(obj) { return obj && obj.__esModule ? 
obj : { default: obj }; }
-
-       exports.default = {
-         components: { Example: _animation2.default }
-       }; //
-       //
-       //
-       //
-
-/***/ },
-/* 3 */
-/***/ function(module, exports, __webpack_require__) {
-
-       var __vue_exports__, __vue_options__
-       var __vue_styles__ = {}
-
-       /* styles */
-       __webpack_require__(4)
-
-       /* script */
-       __vue_exports__ = __webpack_require__(8)
-
-       /* template */
-       var __vue_template__ = __webpack_require__(9)
-       __vue_options__ = __vue_exports__ = __vue_exports__ || {}
-       if (
-         typeof __vue_exports__.default === "object" ||
-         typeof __vue_exports__.default === "function"
-       ) {
-       if (Object.keys(__vue_exports__).some(function (key) { return key !== 
"default" && key !== "__esModule" })) {console.error("named exports are not 
supported in *.vue files.")}
-       __vue_options__ = __vue_exports__ = __vue_exports__.default
-       }
-       if (typeof __vue_options__ === "function") {
-         __vue_options__ = __vue_options__.options
-       }
-       __vue_options__.__file = 
"/Users/YunDong/Projects/weex-vue-demo/src/modules/animation.vue"
-       __vue_options__.render = __vue_template__.render
-       __vue_options__.staticRenderFns = __vue_template__.staticRenderFns
-       __vue_options__._scopeId = "data-v-10636f94"
-
-       /* hot reload */
-       if (false) {(function () {
-         var hotAPI = require("vue-loader/node_modules/vue-hot-reload-api")
-         hotAPI.install(require("vue"), false)
-         if (!hotAPI.compatible) return
-         module.hot.accept()
-         if (!module.hot.data) {
-           hotAPI.createRecord("data-v-10636f94", __vue_options__)
-         } else {
-           hotAPI.reload("data-v-10636f94", __vue_options__)
-         }
-       })()}
-       if (__vue_options__.functional) {console.error("[vue-loader] 
animation.vue: functional components are not supported and should be defined in 
plain js files using render functions.")}
-
-       module.exports = __vue_exports__
-
-
-/***/ },
-/* 4 */
-/***/ function(module, exports, __webpack_require__) {
-
-       // style-loader: Adds some css to the DOM by adding a <style> tag
-
-       // load the styles
-       var content = __webpack_require__(5);
-       if(typeof content === 'string') content = [[module.id, content, '']];
-       // add the styles to the DOM
-       var update = __webpack_require__(7)(content, {});
-       if(content.locals) module.exports = content.locals;
-       // Hot Module Replacement
-       if(false) {
-               // When the styles change, update the <style> tags
-               if(!content.locals) {
-                       
module.hot.accept("!!./../../node_modules/css-loader/index.js!./../../node_modules/vue-loader/lib/style-rewriter.js?id=data-v-10636f94&scoped=true!./../../node_modules/vue-loader/lib/selector.js?type=styles&index=0!./animation.vue",
 function() {
-                               var newContent = 
require("!!./../../node_modules/css-loader/index.js!./../../node_modules/vue-loader/lib/style-rewriter.js?id=data-v-10636f94&scoped=true!./../../node_modules/vue-loader/lib/selector.js?type=styles&index=0!./animation.vue");
-                               if(typeof newContent === 'string') newContent = 
[[module.id, newContent, '']];
-                               update(newContent);
-                       });
-               }
-               // When the module is disposed, remove the <style> tags
-               module.hot.dispose(function() { update(); });
-       }
-
-/***/ },
-/* 5 */
-/***/ function(module, exports, __webpack_require__) {
-
-       exports = module.exports = __webpack_require__(6)();
-       // imports
-
-
-       // module
-       exports.push([module.id, "\n.box[data-v-10636f94] {\n  width: 250px;\n  
height: 250px;\n  background-color: #DDD;\n}\n", ""]);
-
-       // exports
-
-
-/***/ },
-/* 6 */
-/***/ function(module, exports) {
-
-       /*
-               MIT License http://www.opensource.org/licenses/mit-license.php
-               Author Tobias Koppers @sokra
-       */
-       // css base code, injected by the css-loader
-       module.exports = function() {
-               var list = [];
-
-               // return the list of modules as css string
-               list.toString = function toString() {
-                       var result = [];
-                       for(var i = 0; i < this.length; i++) {
-                               var item = this[i];
-                               if(item[2]) {
-                                       result.push("@media " + item[2] + "{" + 
item[1] + "}");
-                               } else {
-                                       result.push(item[1]);
-                               }
-                       }
-                       return result.join("");
-               };
-
-               // import a list of modules into the list
-               list.i = function(modules, mediaQuery) {
-                       if(typeof modules === "string")
-                               modules = [[null, modules, ""]];
-                       var alreadyImportedModules = {};
-                       for(var i = 0; i < this.length; i++) {
-                               var id = this[i][0];
-                               if(typeof id === "number")
-                                       alreadyImportedModules[id] = true;
-                       }
-                       for(i = 0; i < modules.length; i++) {
-                               var item = modules[i];
-                               // skip already imported module
-                               // this implementation is not 100% perfect for 
weird media query combinations
-                               //  when a module is imported multiple times 
with different media queries.
-                               //  I hope this will never occur (Hey this way 
we have smaller bundles)
-                               if(typeof item[0] !== "number" || 
!alreadyImportedModules[item[0]]) {
-                                       if(mediaQuery && !item[2]) {
-                                               item[2] = mediaQuery;
-                                       } else if(mediaQuery) {
-                                               item[2] = "(" + item[2] + ") 
and (" + mediaQuery + ")";
-                                       }
-                                       list.push(item);
-                               }
-                       }
-               };
-               return list;
-       };
-
-
-/***/ },
-/* 7 */
-/***/ function(module, exports, __webpack_require__) {
-
-       /*
-               MIT License http://www.opensource.org/licenses/mit-license.php
-               Author Tobias Koppers @sokra
-       */
-       var stylesInDom = {},
-               memoize = function(fn) {
-                       var memo;
-                       return function () {
-                               if (typeof memo === "undefined") memo = 
fn.apply(this, arguments);
-                               return memo;
-                       };
-               },
-               isOldIE = memoize(function() {
-                       return /msie 
[6-9]\b/.test(window.navigator.userAgent.toLowerCase());
-               }),
-               getHeadElement = memoize(function () {
-                       return document.head || 
document.getElementsByTagName("head")[0];
-               }),
-               singletonElement = null,
-               singletonCounter = 0,
-               styleElementsInsertedAtTop = [];
-
-       module.exports = function(list, options) {
-               if(false) {
-                       if(typeof document !== "object") throw new Error("The 
style-loader cannot be used in a non-browser environment");
-               }
-
-               options = options || {};
-               // Force single-tag solution on IE6-9, which has a hard limit 
on the # of <style>
-               // tags it will allow on a page
-               if (typeof options.singleton === "undefined") options.singleton 
= isOldIE();
-
-               // By default, add <style> tags to the bottom of <head>.
-               if (typeof options.insertAt === "undefined") options.insertAt = 
"bottom";
-
-               var styles = listToStyles(list);
-               addStylesToDom(styles, options);
-
-               return function update(newList) {
-                       var mayRemove = [];
-                       for(var i = 0; i < styles.length; i++) {
-                               var item = styles[i];
-                               var domStyle = stylesInDom[item.id];
-                               domStyle.refs--;
-                               mayRemove.push(domStyle);
-                       }
-                       if(newList) {
-                               var newStyles = listToStyles(newList);
-                               addStylesToDom(newStyles, options);
-                       }
-                       for(var i = 0; i < mayRemove.length; i++) {
-                               var domStyle = mayRemove[i];
-                               if(domStyle.refs === 0) {
-                                       for(var j = 0; j < 
domStyle.parts.length; j++)
-                                               domStyle.parts[j]();
-                                       delete stylesInDom[domStyle.id];
-                               }
-                       }
-               };
-       }
-
-       function addStylesToDom(styles, options) {
-               for(var i = 0; i < styles.length; i++) {
-                       var item = styles[i];
-                       var domStyle = stylesInDom[item.id];
-                       if(domStyle) {
-                               domStyle.refs++;
-                               for(var j = 0; j < domStyle.parts.length; j++) {
-                                       domStyle.parts[j](item.parts[j]);
-                               }
-                               for(; j < item.parts.length; j++) {
-                                       
domStyle.parts.push(addStyle(item.parts[j], options));
-                               }
-                       } else {
-                               var parts = [];
-                               for(var j = 0; j < item.parts.length; j++) {
-                                       parts.push(addStyle(item.parts[j], 
options));
-                               }
-                               stylesInDom[item.id] = {id: item.id, refs: 1, 
parts: parts};
-                       }
-               }
-       }
-
-       function listToStyles(list) {
-               var styles = [];
-               var newStyles = {};
-               for(var i = 0; i < list.length; i++) {
-                       var item = list[i];
-                       var id = item[0];
-                       var css = item[1];
-                       var media = item[2];
-                       var sourceMap = item[3];
-                       var part = {css: css, media: media, sourceMap: 
sourceMap};
-                       if(!newStyles[id])
-                               styles.push(newStyles[id] = {id: id, parts: 
[part]});
-                       else
-                               newStyles[id].parts.push(part);
-               }
-               return styles;
-       }
-
-       function insertStyleElement(options, styleElement) {
-               var head = getHeadElement();
-               var lastStyleElementInsertedAtTop = 
styleElementsInsertedAtTop[styleElementsInsertedAtTop.length - 1];
-               if (options.insertAt === "top") {
-                       if(!lastStyleElementInsertedAtTop) {
-                               head.insertBefore(styleElement, 
head.firstChild);
-                       } else if(lastStyleElementInsertedAtTop.nextSibling) {
-                               head.insertBefore(styleElement, 
lastStyleElementInsertedAtTop.nextSibling);
-                       } else {
-                               head.appendChild(styleElement);
-                       }
-                       styleElementsInsertedAtTop.push(styleElement);
-               } else if (options.insertAt === "bottom") {
-                       head.appendChild(styleElement);
-               } else {
-                       throw new Error("Invalid value for parameter 
'insertAt'. Must be 'top' or 'bottom'.");
-               }
-       }
-
-       function removeStyleElement(styleElement) {
-               styleElement.parentNode.removeChild(styleElement);
-               var idx = styleElementsInsertedAtTop.indexOf(styleElement);
-               if(idx >= 0) {
-                       styleElementsInsertedAtTop.splice(idx, 1);
-               }
-       }
-
-       function createStyleElement(options) {
-               var styleElement = document.createElement("style");
-               styleElement.type = "text/css";
-               insertStyleElement(options, styleElement);
-               return styleElement;
-       }
-
-       function addStyle(obj, options) {
-               var styleElement, update, remove;
-
-               if (options.singleton) {
-                       var styleIndex = singletonCounter++;
-                       styleElement = singletonElement || (singletonElement = 
createStyleElement(options));
-                       update = applyToSingletonTag.bind(null, styleElement, 
styleIndex, false);
-                       remove = applyToSingletonTag.bind(null, styleElement, 
styleIndex, true);
-               } else {
-                       styleElement = createStyleElement(options);
-                       update = applyToTag.bind(null, styleElement);
-                       remove = function() {
-                               removeStyleElement(styleElement);
-                       };
-               }
-
-               update(obj);
-
-               return function updateStyle(newObj) {
-                       if(newObj) {
-                               if(newObj.css === obj.css && newObj.media === 
obj.media && newObj.sourceMap === obj.sourceMap)
-                                       return;
-                               update(obj = newObj);
-                       } else {
-                               remove();
-                       }
-               };
-       }
-
-       var replaceText = (function () {
-               var textStore = [];
-
-               return function (index, replacement) {
-                       textStore[index] = replacement;
-                       return textStore.filter(Boolean).join('\n');
-               };
-       })();
-
-       function applyToSingletonTag(styleElement, index, remove, obj) {
-               var css = remove ? "" : obj.css;
-
-               if (styleElement.styleSheet) {
-                       styleElement.styleSheet.cssText = replaceText(index, 
css);
-               } else {
-                       var cssNode = document.createTextNode(css);
-                       var childNodes = styleElement.childNodes;
-                       if (childNodes[index]) 
styleElement.removeChild(childNodes[index]);
-                       if (childNodes.length) {
-                               styleElement.insertBefore(cssNode, 
childNodes[index]);
-                       } else {
-                               styleElement.appendChild(cssNode);
-                       }
-               }
-       }
-
-       function applyToTag(styleElement, obj) {
-               var css = obj.css;
-               var media = obj.media;
-               var sourceMap = obj.sourceMap;
-
-               if (media) {
-                       styleElement.setAttribute("media", media);
-               }
-
-               if (sourceMap) {
-                       // 
https://developer.chrome.com/devtools/docs/javascript-debugging
-                       // this makes source maps inside style tags work 
properly in Chrome
-                       css += '\n/*# sourceURL=' + sourceMap.sources[0] + ' 
*/';
-                       // http://stackoverflow.com/a/26603875
-                       css += "\n/*# 
sourceMappingURL=data:application/json;base64," + 
btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))) + " */";
-               }
-
-               if (styleElement.styleSheet) {
-                       styleElement.styleSheet.cssText = css;
-               } else {
-                       while(styleElement.firstChild) {
-                               
styleElement.removeChild(styleElement.firstChild);
-                       }
-                       styleElement.appendChild(document.createTextNode(css));
-               }
-       }
-
-
-/***/ },
-/* 8 */
-/***/ function(module, exports) {
-
-       'use strict';
-
-       Object.defineProperty(exports, "__esModule", {
-         value: true
-       });
-       //
-       //
-       //
-       //
-       //
-       //
-
-       var animation = weex.requireModule('animation');
-       var modal = weex.requireModule('modal');
-
-       exports.default = {
-         methods: {
-           move: function move() {
-             var testEl = this.$refs.test;
-             animation.transition(testEl, {
-               styles: {
-                 color: '#FF0000',
-                 transform: 'translate(250px, 100px)',
-                 transformOrigin: 'center center'
-               },
-               duration: 800, //ms
-               timingFunction: 'ease',
-               delay: 0 //ms
-             }, function () {
-               modal.toast({ message: 'animation finished.' });
-             });
-           }
-         }
-       };
-
-/***/ },
-/* 9 */
-/***/ function(module, exports, __webpack_require__) {
-
-       module.exports={render:function (){var _vm=this;var 
_h=_vm.$createElement;var _c=_vm._self._c||_h;
-         return _c('div', {
-           staticClass: "wrapper"
-         }, [_c('div', {
-           ref: "test",
-           staticClass: "box",
-           on: {
-             "click": _vm.move
-           }
-         })])
-       },staticRenderFns: []}
-       module.exports.render._withStripped = true
-       if (false) {
-         module.hot.accept()
-         if (module.hot.data) {
-            
require("vue-loader/node_modules/vue-hot-reload-api").rerender("data-v-10636f94",
 module.exports)
-         }
-       }
-
-/***/ },
-/* 10 */
-/***/ function(module, exports, __webpack_require__) {
-
-       module.exports={render:function (){var _vm=this;var 
_h=_vm.$createElement;var _c=_vm._self._c||_h;
-         return _c('example')
-       },staticRenderFns: []}
-       module.exports.render._withStripped = true
-       if (false) {
-         module.hot.accept()
-         if (module.hot.data) {
-            
require("vue-loader/node_modules/vue-hot-reload-api").rerender("data-v-474ddc19",
 module.exports)
-         }
-       }
-
-/***/ }
-/******/ ]);
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/8162f8c2/doc/themes/weex/source/js/examples/animation.weex.js
----------------------------------------------------------------------
diff --git a/doc/themes/weex/source/js/examples/animation.weex.js 
b/doc/themes/weex/source/js/examples/animation.weex.js
deleted file mode 100644
index 34d3d41..0000000
--- a/doc/themes/weex/source/js/examples/animation.weex.js
+++ /dev/null
@@ -1,224 +0,0 @@
-// { "framework": "Vue" }
-
-/******/ (function(modules) { // webpackBootstrap
-/******/       // The module cache
-/******/       var installedModules = {};
-
-/******/       // The require function
-/******/       function __webpack_require__(moduleId) {
-
-/******/               // Check if module is in cache
-/******/               if(installedModules[moduleId])
-/******/                       return installedModules[moduleId].exports;
-
-/******/               // Create a new module (and put it into the cache)
-/******/               var module = installedModules[moduleId] = {
-/******/                       exports: {},
-/******/                       id: moduleId,
-/******/                       loaded: false
-/******/               };
-
-/******/               // Execute the module function
-/******/               modules[moduleId].call(module.exports, module, 
module.exports, __webpack_require__);
-
-/******/               // Flag the module as loaded
-/******/               module.loaded = true;
-
-/******/               // Return the exports of the module
-/******/               return module.exports;
-/******/       }
-
-
-/******/       // expose the modules object (__webpack_modules__)
-/******/       __webpack_require__.m = modules;
-
-/******/       // expose the module cache
-/******/       __webpack_require__.c = installedModules;
-
-/******/       // __webpack_public_path__
-/******/       __webpack_require__.p = "";
-
-/******/       // Load entry module and return exports
-/******/       return __webpack_require__(0);
-/******/ })
-/************************************************************************/
-/******/ ([
-/* 0 */
-/***/ function(module, exports, __webpack_require__) {
-
-       var __vue_exports__, __vue_options__
-       var __vue_styles__ = []
-
-       /* script */
-       __vue_exports__ = __webpack_require__(1)
-
-       /* template */
-       var __vue_template__ = __webpack_require__(6)
-       __vue_options__ = __vue_exports__ = __vue_exports__ || {}
-       if (
-         typeof __vue_exports__.default === "object" ||
-         typeof __vue_exports__.default === "function"
-       ) {
-       if (Object.keys(__vue_exports__).some(function (key) { return key !== 
"default" && key !== "__esModule" })) {console.error("named exports are not 
supported in *.vue files.")}
-       __vue_options__ = __vue_exports__ = __vue_exports__.default
-       }
-       if (typeof __vue_options__ === "function") {
-         __vue_options__ = __vue_options__.options
-       }
-       __vue_options__.__file = 
"/Users/YunDong/Projects/weex-vue-demo/src/App.vue"
-       __vue_options__.render = __vue_template__.render
-       __vue_options__.staticRenderFns = __vue_template__.staticRenderFns
-       __vue_options__.style = __vue_options__.style || {}
-       __vue_styles__.forEach(function (module) {
-       for (var name in module) {
-       __vue_options__.style[name] = module[name]
-       }
-       })
-
-       module.exports = __vue_exports__
-       module.exports.el = 'body'
-       new Vue(module.exports)
-
-
-/***/ },
-/* 1 */
-/***/ function(module, exports, __webpack_require__) {
-
-       'use strict';
-
-       Object.defineProperty(exports, "__esModule", {
-         value: true
-       });
-
-       var _animation = __webpack_require__(2);
-
-       var _animation2 = _interopRequireDefault(_animation);
-
-       function _interopRequireDefault(obj) { return obj && obj.__esModule ? 
obj : { default: obj }; }
-
-       exports.default = {
-         components: { Example: _animation2.default }
-       }; //
-       //
-       //
-       //
-
-/***/ },
-/* 2 */
-/***/ function(module, exports, __webpack_require__) {
-
-       var __vue_exports__, __vue_options__
-       var __vue_styles__ = []
-
-       /* styles */
-       __vue_styles__.push(__webpack_require__(3)
-       )
-
-       /* script */
-       __vue_exports__ = __webpack_require__(4)
-
-       /* template */
-       var __vue_template__ = __webpack_require__(5)
-       __vue_options__ = __vue_exports__ = __vue_exports__ || {}
-       if (
-         typeof __vue_exports__.default === "object" ||
-         typeof __vue_exports__.default === "function"
-       ) {
-       if (Object.keys(__vue_exports__).some(function (key) { return key !== 
"default" && key !== "__esModule" })) {console.error("named exports are not 
supported in *.vue files.")}
-       __vue_options__ = __vue_exports__ = __vue_exports__.default
-       }
-       if (typeof __vue_options__ === "function") {
-         __vue_options__ = __vue_options__.options
-       }
-       __vue_options__.__file = 
"/Users/YunDong/Projects/weex-vue-demo/src/modules/animation.vue"
-       __vue_options__.render = __vue_template__.render
-       __vue_options__.staticRenderFns = __vue_template__.staticRenderFns
-       __vue_options__.style = __vue_options__.style || {}
-       __vue_styles__.forEach(function (module) {
-       for (var name in module) {
-       __vue_options__.style[name] = module[name]
-       }
-       })
-
-       module.exports = __vue_exports__
-
-
-/***/ },
-/* 3 */
-/***/ function(module, exports) {
-
-       module.exports = {
-         "box": {
-           "width": 250,
-           "height": 250,
-           "backgroundColor": "#DDDDDD"
-         }
-       }
-
-/***/ },
-/* 4 */
-/***/ function(module, exports) {
-
-       'use strict';
-
-       Object.defineProperty(exports, "__esModule", {
-         value: true
-       });
-       //
-       //
-       //
-       //
-       //
-       //
-
-       var animation = weex.requireModule('animation');
-       var modal = weex.requireModule('modal');
-
-       exports.default = {
-         methods: {
-           move: function move() {
-             var testEl = this.$refs.test;
-             animation.transition(testEl, {
-               styles: {
-                 color: '#FF0000',
-                 transform: 'translate(250px, 100px)',
-                 transformOrigin: 'center center'
-               },
-               duration: 800, //ms
-               timingFunction: 'ease',
-               delay: 0 //ms
-             }, function () {
-               modal.toast({ message: 'animation finished.' });
-             });
-           }
-         }
-       };
-
-/***/ },
-/* 5 */
-/***/ function(module, exports) {
-
-       module.exports={render:function (){var _vm=this;var 
_h=_vm.$createElement;var _c=_vm._self._c||_h;
-         return _h('div', {
-           staticClass: ["wrapper"]
-         }, [_h('div', {
-           ref: "test",
-           staticClass: ["box"],
-           on: {
-             "click": _vm.move
-           }
-         })])
-       },staticRenderFns: []}
-       module.exports.render._withStripped = true
-
-/***/ },
-/* 6 */
-/***/ function(module, exports) {
-
-       module.exports={render:function (){var _vm=this;var 
_h=_vm.$createElement;var _c=_vm._self._c||_h;
-         return _h('example')
-       },staticRenderFns: []}
-       module.exports.render._withStripped = true
-
-/***/ }
-/******/ ]);
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/8162f8c2/doc/themes/weex/source/js/examples/clipboard.web.js
----------------------------------------------------------------------
diff --git a/doc/themes/weex/source/js/examples/clipboard.web.js 
b/doc/themes/weex/source/js/examples/clipboard.web.js
deleted file mode 100644
index 5b80791..0000000
--- a/doc/themes/weex/source/js/examples/clipboard.web.js
+++ /dev/null
@@ -1,583 +0,0 @@
-/******/ (function(modules) { // webpackBootstrap
-/******/       // The module cache
-/******/       var installedModules = {};
-
-/******/       // The require function
-/******/       function __webpack_require__(moduleId) {
-
-/******/               // Check if module is in cache
-/******/               if(installedModules[moduleId])
-/******/                       return installedModules[moduleId].exports;
-
-/******/               // Create a new module (and put it into the cache)
-/******/               var module = installedModules[moduleId] = {
-/******/                       exports: {},
-/******/                       id: moduleId,
-/******/                       loaded: false
-/******/               };
-
-/******/               // Execute the module function
-/******/               modules[moduleId].call(module.exports, module, 
module.exports, __webpack_require__);
-
-/******/               // Flag the module as loaded
-/******/               module.loaded = true;
-
-/******/               // Return the exports of the module
-/******/               return module.exports;
-/******/       }
-
-
-/******/       // expose the modules object (__webpack_modules__)
-/******/       __webpack_require__.m = modules;
-
-/******/       // expose the module cache
-/******/       __webpack_require__.c = installedModules;
-
-/******/       // __webpack_public_path__
-/******/       __webpack_require__.p = "";
-
-/******/       // Load entry module and return exports
-/******/       return __webpack_require__(0);
-/******/ })
-/************************************************************************/
-/******/ ([
-/* 0 */
-/***/ function(module, exports, __webpack_require__) {
-
-       'use strict';
-
-       var _App = __webpack_require__(1);
-
-       var _App2 = _interopRequireDefault(_App);
-
-       function _interopRequireDefault(obj) { return obj && obj.__esModule ? 
obj : { default: obj }; }
-
-       _App2.default.el = '#root';
-       new Vue(_App2.default);
-
-/***/ },
-/* 1 */
-/***/ function(module, exports, __webpack_require__) {
-
-       var __vue_exports__, __vue_options__
-       var __vue_styles__ = {}
-
-       /* script */
-       __vue_exports__ = __webpack_require__(2)
-
-       /* template */
-       var __vue_template__ = __webpack_require__(10)
-       __vue_options__ = __vue_exports__ = __vue_exports__ || {}
-       if (
-         typeof __vue_exports__.default === "object" ||
-         typeof __vue_exports__.default === "function"
-       ) {
-       if (Object.keys(__vue_exports__).some(function (key) { return key !== 
"default" && key !== "__esModule" })) {console.error("named exports are not 
supported in *.vue files.")}
-       __vue_options__ = __vue_exports__ = __vue_exports__.default
-       }
-       if (typeof __vue_options__ === "function") {
-         __vue_options__ = __vue_options__.options
-       }
-       __vue_options__.__file = 
"/Users/YunDong/Projects/weex-vue-demo/src/App.vue"
-       __vue_options__.render = __vue_template__.render
-       __vue_options__.staticRenderFns = __vue_template__.staticRenderFns
-
-       /* hot reload */
-       if (false) {(function () {
-         var hotAPI = require("vue-loader/node_modules/vue-hot-reload-api")
-         hotAPI.install(require("vue"), false)
-         if (!hotAPI.compatible) return
-         module.hot.accept()
-         if (!module.hot.data) {
-           hotAPI.createRecord("data-v-474ddc19", __vue_options__)
-         } else {
-           hotAPI.reload("data-v-474ddc19", __vue_options__)
-         }
-       })()}
-       if (__vue_options__.functional) {console.error("[vue-loader] App.vue: 
functional components are not supported and should be defined in plain js files 
using render functions.")}
-
-       module.exports = __vue_exports__
-
-
-/***/ },
-/* 2 */
-/***/ function(module, exports, __webpack_require__) {
-
-       'use strict';
-
-       Object.defineProperty(exports, "__esModule", {
-         value: true
-       });
-
-       var _clipboard = __webpack_require__(3);
-
-       var _clipboard2 = _interopRequireDefault(_clipboard);
-
-       function _interopRequireDefault(obj) { return obj && obj.__esModule ? 
obj : { default: obj }; }
-
-       exports.default = {
-         components: { Example: _clipboard2.default }
-       }; //
-       //
-       //
-       //
-
-/***/ },
-/* 3 */
-/***/ function(module, exports, __webpack_require__) {
-
-       var __vue_exports__, __vue_options__
-       var __vue_styles__ = {}
-
-       /* styles */
-       __webpack_require__(4)
-
-       /* script */
-       __vue_exports__ = __webpack_require__(8)
-
-       /* template */
-       var __vue_template__ = __webpack_require__(9)
-       __vue_options__ = __vue_exports__ = __vue_exports__ || {}
-       if (
-         typeof __vue_exports__.default === "object" ||
-         typeof __vue_exports__.default === "function"
-       ) {
-       if (Object.keys(__vue_exports__).some(function (key) { return key !== 
"default" && key !== "__esModule" })) {console.error("named exports are not 
supported in *.vue files.")}
-       __vue_options__ = __vue_exports__ = __vue_exports__.default
-       }
-       if (typeof __vue_options__ === "function") {
-         __vue_options__ = __vue_options__.options
-       }
-       __vue_options__.__file = 
"/Users/YunDong/Projects/weex-vue-demo/src/modules/clipboard.vue"
-       __vue_options__.render = __vue_template__.render
-       __vue_options__.staticRenderFns = __vue_template__.staticRenderFns
-       __vue_options__._scopeId = "data-v-b5be4eb4"
-
-       /* hot reload */
-       if (false) {(function () {
-         var hotAPI = require("vue-loader/node_modules/vue-hot-reload-api")
-         hotAPI.install(require("vue"), false)
-         if (!hotAPI.compatible) return
-         module.hot.accept()
-         if (!module.hot.data) {
-           hotAPI.createRecord("data-v-b5be4eb4", __vue_options__)
-         } else {
-           hotAPI.reload("data-v-b5be4eb4", __vue_options__)
-         }
-       })()}
-       if (__vue_options__.functional) {console.error("[vue-loader] 
clipboard.vue: functional components are not supported and should be defined in 
plain js files using render functions.")}
-
-       module.exports = __vue_exports__
-
-
-/***/ },
-/* 4 */
-/***/ function(module, exports, __webpack_require__) {
-
-       // style-loader: Adds some css to the DOM by adding a <style> tag
-
-       // load the styles
-       var content = __webpack_require__(5);
-       if(typeof content === 'string') content = [[module.id, content, '']];
-       // add the styles to the DOM
-       var update = __webpack_require__(7)(content, {});
-       if(content.locals) module.exports = content.locals;
-       // Hot Module Replacement
-       if(false) {
-               // When the styles change, update the <style> tags
-               if(!content.locals) {
-                       
module.hot.accept("!!./../../node_modules/css-loader/index.js!./../../node_modules/vue-loader/lib/style-rewriter.js?id=data-v-b5be4eb4&scoped=true!./../../node_modules/vue-loader/lib/selector.js?type=styles&index=0!./clipboard.vue",
 function() {
-                               var newContent = 
require("!!./../../node_modules/css-loader/index.js!./../../node_modules/vue-loader/lib/style-rewriter.js?id=data-v-b5be4eb4&scoped=true!./../../node_modules/vue-loader/lib/selector.js?type=styles&index=0!./clipboard.vue");
-                               if(typeof newContent === 'string') newContent = 
[[module.id, newContent, '']];
-                               update(newContent);
-                       });
-               }
-               // When the module is disposed, remove the <style> tags
-               module.hot.dispose(function() { update(); });
-       }
-
-/***/ },
-/* 5 */
-/***/ function(module, exports, __webpack_require__) {
-
-       exports = module.exports = __webpack_require__(6)();
-       // imports
-
-
-       // module
-       exports.push([module.id, "\n.div[data-v-b5be4eb4] {\n  flex-direction: 
row;\n  justify-content: space-between;\n  align-items: center;\n  width: 
750px;\n  height: 90px;\n  padding-left: 30px;\n  padding-right: 30px;\n\n  
border-bottom-width: 1px;\n  border-style: solid;\n  border-color: 
#DDDDDD;\n}\n.text[data-v-b5be4eb4] {\n  width: 750px;\n  height: 90px;\n}\n", 
""]);
-
-       // exports
-
-
-/***/ },
-/* 6 */
-/***/ function(module, exports) {
-
-       /*
-               MIT License http://www.opensource.org/licenses/mit-license.php
-               Author Tobias Koppers @sokra
-       */
-       // css base code, injected by the css-loader
-       module.exports = function() {
-               var list = [];
-
-               // return the list of modules as css string
-               list.toString = function toString() {
-                       var result = [];
-                       for(var i = 0; i < this.length; i++) {
-                               var item = this[i];
-                               if(item[2]) {
-                                       result.push("@media " + item[2] + "{" + 
item[1] + "}");
-                               } else {
-                                       result.push(item[1]);
-                               }
-                       }
-                       return result.join("");
-               };
-
-               // import a list of modules into the list
-               list.i = function(modules, mediaQuery) {
-                       if(typeof modules === "string")
-                               modules = [[null, modules, ""]];
-                       var alreadyImportedModules = {};
-                       for(var i = 0; i < this.length; i++) {
-                               var id = this[i][0];
-                               if(typeof id === "number")
-                                       alreadyImportedModules[id] = true;
-                       }
-                       for(i = 0; i < modules.length; i++) {
-                               var item = modules[i];
-                               // skip already imported module
-                               // this implementation is not 100% perfect for 
weird media query combinations
-                               //  when a module is imported multiple times 
with different media queries.
-                               //  I hope this will never occur (Hey this way 
we have smaller bundles)
-                               if(typeof item[0] !== "number" || 
!alreadyImportedModules[item[0]]) {
-                                       if(mediaQuery && !item[2]) {
-                                               item[2] = mediaQuery;
-                                       } else if(mediaQuery) {
-                                               item[2] = "(" + item[2] + ") 
and (" + mediaQuery + ")";
-                                       }
-                                       list.push(item);
-                               }
-                       }
-               };
-               return list;
-       };
-
-
-/***/ },
-/* 7 */
-/***/ function(module, exports, __webpack_require__) {
-
-       /*
-               MIT License http://www.opensource.org/licenses/mit-license.php
-               Author Tobias Koppers @sokra
-       */
-       var stylesInDom = {},
-               memoize = function(fn) {
-                       var memo;
-                       return function () {
-                               if (typeof memo === "undefined") memo = 
fn.apply(this, arguments);
-                               return memo;
-                       };
-               },
-               isOldIE = memoize(function() {
-                       return /msie 
[6-9]\b/.test(window.navigator.userAgent.toLowerCase());
-               }),
-               getHeadElement = memoize(function () {
-                       return document.head || 
document.getElementsByTagName("head")[0];
-               }),
-               singletonElement = null,
-               singletonCounter = 0,
-               styleElementsInsertedAtTop = [];
-
-       module.exports = function(list, options) {
-               if(false) {
-                       if(typeof document !== "object") throw new Error("The 
style-loader cannot be used in a non-browser environment");
-               }
-
-               options = options || {};
-               // Force single-tag solution on IE6-9, which has a hard limit 
on the # of <style>
-               // tags it will allow on a page
-               if (typeof options.singleton === "undefined") options.singleton 
= isOldIE();
-
-               // By default, add <style> tags to the bottom of <head>.
-               if (typeof options.insertAt === "undefined") options.insertAt = 
"bottom";
-
-               var styles = listToStyles(list);
-               addStylesToDom(styles, options);
-
-               return function update(newList) {
-                       var mayRemove = [];
-                       for(var i = 0; i < styles.length; i++) {
-                               var item = styles[i];
-                               var domStyle = stylesInDom[item.id];
-                               domStyle.refs--;
-                               mayRemove.push(domStyle);
-                       }
-                       if(newList) {
-                               var newStyles = listToStyles(newList);
-                               addStylesToDom(newStyles, options);
-                       }
-                       for(var i = 0; i < mayRemove.length; i++) {
-                               var domStyle = mayRemove[i];
-                               if(domStyle.refs === 0) {
-                                       for(var j = 0; j < 
domStyle.parts.length; j++)
-                                               domStyle.parts[j]();
-                                       delete stylesInDom[domStyle.id];
-                               }
-                       }
-               };
-       }
-
-       function addStylesToDom(styles, options) {
-               for(var i = 0; i < styles.length; i++) {
-                       var item = styles[i];
-                       var domStyle = stylesInDom[item.id];
-                       if(domStyle) {
-                               domStyle.refs++;
-                               for(var j = 0; j < domStyle.parts.length; j++) {
-                                       domStyle.parts[j](item.parts[j]);
-                               }
-                               for(; j < item.parts.length; j++) {
-                                       
domStyle.parts.push(addStyle(item.parts[j], options));
-                               }
-                       } else {
-                               var parts = [];
-                               for(var j = 0; j < item.parts.length; j++) {
-                                       parts.push(addStyle(item.parts[j], 
options));
-                               }
-                               stylesInDom[item.id] = {id: item.id, refs: 1, 
parts: parts};
-                       }
-               }
-       }
-
-       function listToStyles(list) {
-               var styles = [];
-               var newStyles = {};
-               for(var i = 0; i < list.length; i++) {
-                       var item = list[i];
-                       var id = item[0];
-                       var css = item[1];
-                       var media = item[2];
-                       var sourceMap = item[3];
-                       var part = {css: css, media: media, sourceMap: 
sourceMap};
-                       if(!newStyles[id])
-                               styles.push(newStyles[id] = {id: id, parts: 
[part]});
-                       else
-                               newStyles[id].parts.push(part);
-               }
-               return styles;
-       }
-
-       function insertStyleElement(options, styleElement) {
-               var head = getHeadElement();
-               var lastStyleElementInsertedAtTop = 
styleElementsInsertedAtTop[styleElementsInsertedAtTop.length - 1];
-               if (options.insertAt === "top") {
-                       if(!lastStyleElementInsertedAtTop) {
-                               head.insertBefore(styleElement, 
head.firstChild);
-                       } else if(lastStyleElementInsertedAtTop.nextSibling) {
-                               head.insertBefore(styleElement, 
lastStyleElementInsertedAtTop.nextSibling);
-                       } else {
-                               head.appendChild(styleElement);
-                       }
-                       styleElementsInsertedAtTop.push(styleElement);
-               } else if (options.insertAt === "bottom") {
-                       head.appendChild(styleElement);
-               } else {
-                       throw new Error("Invalid value for parameter 
'insertAt'. Must be 'top' or 'bottom'.");
-               }
-       }
-
-       function removeStyleElement(styleElement) {
-               styleElement.parentNode.removeChild(styleElement);
-               var idx = styleElementsInsertedAtTop.indexOf(styleElement);
-               if(idx >= 0) {
-                       styleElementsInsertedAtTop.splice(idx, 1);
-               }
-       }
-
-       function createStyleElement(options) {
-               var styleElement = document.createElement("style");
-               styleElement.type = "text/css";
-               insertStyleElement(options, styleElement);
-               return styleElement;
-       }
-
-       function addStyle(obj, options) {
-               var styleElement, update, remove;
-
-               if (options.singleton) {
-                       var styleIndex = singletonCounter++;
-                       styleElement = singletonElement || (singletonElement = 
createStyleElement(options));
-                       update = applyToSingletonTag.bind(null, styleElement, 
styleIndex, false);
-                       remove = applyToSingletonTag.bind(null, styleElement, 
styleIndex, true);
-               } else {
-                       styleElement = createStyleElement(options);
-                       update = applyToTag.bind(null, styleElement);
-                       remove = function() {
-                               removeStyleElement(styleElement);
-                       };
-               }
-
-               update(obj);
-
-               return function updateStyle(newObj) {
-                       if(newObj) {
-                               if(newObj.css === obj.css && newObj.media === 
obj.media && newObj.sourceMap === obj.sourceMap)
-                                       return;
-                               update(obj = newObj);
-                       } else {
-                               remove();
-                       }
-               };
-       }
-
-       var replaceText = (function () {
-               var textStore = [];
-
-               return function (index, replacement) {
-                       textStore[index] = replacement;
-                       return textStore.filter(Boolean).join('\n');
-               };
-       })();
-
-       function applyToSingletonTag(styleElement, index, remove, obj) {
-               var css = remove ? "" : obj.css;
-
-               if (styleElement.styleSheet) {
-                       styleElement.styleSheet.cssText = replaceText(index, 
css);
-               } else {
-                       var cssNode = document.createTextNode(css);
-                       var childNodes = styleElement.childNodes;
-                       if (childNodes[index]) 
styleElement.removeChild(childNodes[index]);
-                       if (childNodes.length) {
-                               styleElement.insertBefore(cssNode, 
childNodes[index]);
-                       } else {
-                               styleElement.appendChild(cssNode);
-                       }
-               }
-       }
-
-       function applyToTag(styleElement, obj) {
-               var css = obj.css;
-               var media = obj.media;
-               var sourceMap = obj.sourceMap;
-
-               if (media) {
-                       styleElement.setAttribute("media", media);
-               }
-
-               if (sourceMap) {
-                       // 
https://developer.chrome.com/devtools/docs/javascript-debugging
-                       // this makes source maps inside style tags work 
properly in Chrome
-                       css += '\n/*# sourceURL=' + sourceMap.sources[0] + ' 
*/';
-                       // http://stackoverflow.com/a/26603875
-                       css += "\n/*# 
sourceMappingURL=data:application/json;base64," + 
btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))) + " */";
-               }
-
-               if (styleElement.styleSheet) {
-                       styleElement.styleSheet.cssText = css;
-               } else {
-                       while(styleElement.firstChild) {
-                               
styleElement.removeChild(styleElement.firstChild);
-                       }
-                       styleElement.appendChild(document.createTextNode(css));
-               }
-       }
-
-
-/***/ },
-/* 8 */
-/***/ function(module, exports) {
-
-       'use strict';
-
-       Object.defineProperty(exports, "__esModule", {
-         value: true
-       });
-       //
-       //
-       //
-       //
-       //
-       //
-       //
-       //
-       //
-       //
-       //
-
-       var clipboard = weex.requireModule('clipboard');
-
-       exports.default = {
-         data: function data() {
-           return {
-             tobecopied: 'yay!',
-             message: 'nothing.'
-           };
-         },
-
-
-         methods: {
-           setContent: function setContent() {
-             clipboard.setString(this.tobecopied);
-           },
-           onItemClick: function onItemClick() {
-             var _this = this;
-
-             this.message = 'clicked! ';
-             clipboard.getString(function (ret) {
-               _this.message = 'text from clipboard:' + ret.data;
-             });
-           }
-         }
-       };
-
-/***/ },
-/* 9 */
-/***/ function(module, exports, __webpack_require__) {
-
-       module.exports={render:function (){var _vm=this;var 
_h=_vm.$createElement;var _c=_vm._self._c||_h;
-         return _c('div', [_c('div', {
-           staticClass: "div"
-         }, [_c('text', {
-           staticClass: "text",
-           on: {
-             "click": _vm.onItemClick
-           }
-         }, [_vm._v(_vm._s(_vm.message))])]), _vm._v(" "), _c('div', {
-           staticClass: "div"
-         }, [_c('text', {
-           staticClass: "text",
-           on: {
-             "click": _vm.setContent
-           }
-         }, [_vm._v("Click to copy: " + _vm._s(_vm.tobecopied))])])])
-       },staticRenderFns: []}
-       module.exports.render._withStripped = true
-       if (false) {
-         module.hot.accept()
-         if (module.hot.data) {
-            
require("vue-loader/node_modules/vue-hot-reload-api").rerender("data-v-b5be4eb4",
 module.exports)
-         }
-       }
-
-/***/ },
-/* 10 */
-/***/ function(module, exports, __webpack_require__) {
-
-       module.exports={render:function (){var _vm=this;var 
_h=_vm.$createElement;var _c=_vm._self._c||_h;
-         return _c('example')
-       },staticRenderFns: []}
-       module.exports.render._withStripped = true
-       if (false) {
-         module.hot.accept()
-         if (module.hot.data) {
-            
require("vue-loader/node_modules/vue-hot-reload-api").rerender("data-v-474ddc19",
 module.exports)
-         }
-       }
-
-/***/ }
-/******/ ]);
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/8162f8c2/doc/themes/weex/source/js/examples/clipboard.weex.js
----------------------------------------------------------------------
diff --git a/doc/themes/weex/source/js/examples/clipboard.weex.js 
b/doc/themes/weex/source/js/examples/clipboard.weex.js
deleted file mode 100644
index 1cdc9ba..0000000
--- a/doc/themes/weex/source/js/examples/clipboard.weex.js
+++ /dev/null
@@ -1,249 +0,0 @@
-// { "framework": "Vue" }
-
-/******/ (function(modules) { // webpackBootstrap
-/******/       // The module cache
-/******/       var installedModules = {};
-
-/******/       // The require function
-/******/       function __webpack_require__(moduleId) {
-
-/******/               // Check if module is in cache
-/******/               if(installedModules[moduleId])
-/******/                       return installedModules[moduleId].exports;
-
-/******/               // Create a new module (and put it into the cache)
-/******/               var module = installedModules[moduleId] = {
-/******/                       exports: {},
-/******/                       id: moduleId,
-/******/                       loaded: false
-/******/               };
-
-/******/               // Execute the module function
-/******/               modules[moduleId].call(module.exports, module, 
module.exports, __webpack_require__);
-
-/******/               // Flag the module as loaded
-/******/               module.loaded = true;
-
-/******/               // Return the exports of the module
-/******/               return module.exports;
-/******/       }
-
-
-/******/       // expose the modules object (__webpack_modules__)
-/******/       __webpack_require__.m = modules;
-
-/******/       // expose the module cache
-/******/       __webpack_require__.c = installedModules;
-
-/******/       // __webpack_public_path__
-/******/       __webpack_require__.p = "";
-
-/******/       // Load entry module and return exports
-/******/       return __webpack_require__(0);
-/******/ })
-/************************************************************************/
-/******/ ([
-/* 0 */
-/***/ function(module, exports, __webpack_require__) {
-
-       var __vue_exports__, __vue_options__
-       var __vue_styles__ = []
-
-       /* script */
-       __vue_exports__ = __webpack_require__(1)
-
-       /* template */
-       var __vue_template__ = __webpack_require__(6)
-       __vue_options__ = __vue_exports__ = __vue_exports__ || {}
-       if (
-         typeof __vue_exports__.default === "object" ||
-         typeof __vue_exports__.default === "function"
-       ) {
-       if (Object.keys(__vue_exports__).some(function (key) { return key !== 
"default" && key !== "__esModule" })) {console.error("named exports are not 
supported in *.vue files.")}
-       __vue_options__ = __vue_exports__ = __vue_exports__.default
-       }
-       if (typeof __vue_options__ === "function") {
-         __vue_options__ = __vue_options__.options
-       }
-       __vue_options__.__file = 
"/Users/YunDong/Projects/weex-vue-demo/src/App.vue"
-       __vue_options__.render = __vue_template__.render
-       __vue_options__.staticRenderFns = __vue_template__.staticRenderFns
-       __vue_options__.style = __vue_options__.style || {}
-       __vue_styles__.forEach(function (module) {
-       for (var name in module) {
-       __vue_options__.style[name] = module[name]
-       }
-       })
-
-       module.exports = __vue_exports__
-       module.exports.el = 'body'
-       new Vue(module.exports)
-
-
-/***/ },
-/* 1 */
-/***/ function(module, exports, __webpack_require__) {
-
-       'use strict';
-
-       Object.defineProperty(exports, "__esModule", {
-         value: true
-       });
-
-       var _clipboard = __webpack_require__(2);
-
-       var _clipboard2 = _interopRequireDefault(_clipboard);
-
-       function _interopRequireDefault(obj) { return obj && obj.__esModule ? 
obj : { default: obj }; }
-
-       exports.default = {
-         components: { Example: _clipboard2.default }
-       }; //
-       //
-       //
-       //
-
-/***/ },
-/* 2 */
-/***/ function(module, exports, __webpack_require__) {
-
-       var __vue_exports__, __vue_options__
-       var __vue_styles__ = []
-
-       /* styles */
-       __vue_styles__.push(__webpack_require__(3)
-       )
-
-       /* script */
-       __vue_exports__ = __webpack_require__(4)
-
-       /* template */
-       var __vue_template__ = __webpack_require__(5)
-       __vue_options__ = __vue_exports__ = __vue_exports__ || {}
-       if (
-         typeof __vue_exports__.default === "object" ||
-         typeof __vue_exports__.default === "function"
-       ) {
-       if (Object.keys(__vue_exports__).some(function (key) { return key !== 
"default" && key !== "__esModule" })) {console.error("named exports are not 
supported in *.vue files.")}
-       __vue_options__ = __vue_exports__ = __vue_exports__.default
-       }
-       if (typeof __vue_options__ === "function") {
-         __vue_options__ = __vue_options__.options
-       }
-       __vue_options__.__file = 
"/Users/YunDong/Projects/weex-vue-demo/src/modules/clipboard.vue"
-       __vue_options__.render = __vue_template__.render
-       __vue_options__.staticRenderFns = __vue_template__.staticRenderFns
-       __vue_options__.style = __vue_options__.style || {}
-       __vue_styles__.forEach(function (module) {
-       for (var name in module) {
-       __vue_options__.style[name] = module[name]
-       }
-       })
-
-       module.exports = __vue_exports__
-
-
-/***/ },
-/* 3 */
-/***/ function(module, exports) {
-
-       module.exports = {
-         "div": {
-           "flexDirection": "row",
-           "justifyContent": "space-between",
-           "alignItems": "center",
-           "width": 750,
-           "height": 90,
-           "paddingLeft": 30,
-           "paddingRight": 30,
-           "borderBottomWidth": 1,
-           "borderStyle": "solid",
-           "borderColor": "#DDDDDD"
-         },
-         "text": {
-           "width": 750,
-           "height": 90
-         }
-       }
-
-/***/ },
-/* 4 */
-/***/ function(module, exports) {
-
-       'use strict';
-
-       Object.defineProperty(exports, "__esModule", {
-         value: true
-       });
-       //
-       //
-       //
-       //
-       //
-       //
-       //
-       //
-       //
-       //
-       //
-
-       var clipboard = weex.requireModule('clipboard');
-
-       exports.default = {
-         data: function data() {
-           return {
-             tobecopied: 'yay!',
-             message: 'nothing.'
-           };
-         },
-
-
-         methods: {
-           setContent: function setContent() {
-             clipboard.setString(this.tobecopied);
-           },
-           onItemClick: function onItemClick() {
-             var _this = this;
-
-             this.message = 'clicked! ';
-             clipboard.getString(function (ret) {
-               _this.message = 'text from clipboard:' + ret.data;
-             });
-           }
-         }
-       };
-
-/***/ },
-/* 5 */
-/***/ function(module, exports) {
-
-       module.exports={render:function (){var _vm=this;var 
_h=_vm.$createElement;var _c=_vm._self._c||_h;
-         return _h('div', [_h('div', {
-           staticClass: ["div"]
-         }, [_h('text', {
-           staticClass: ["text"],
-           on: {
-             "click": _vm.onItemClick
-           }
-         }, [_vm._s(_vm.message)])]), _h('div', {
-           staticClass: ["div"]
-         }, [_h('text', {
-           staticClass: ["text"],
-           on: {
-             "click": _vm.setContent
-           }
-         }, ["Click to copy: " + _vm._s(_vm.tobecopied)])])])
-       },staticRenderFns: []}
-       module.exports.render._withStripped = true
-
-/***/ },
-/* 6 */
-/***/ function(module, exports) {
-
-       module.exports={render:function (){var _vm=this;var 
_h=_vm.$createElement;var _c=_vm._self._c||_h;
-         return _h('example')
-       },staticRenderFns: []}
-       module.exports.render._withStripped = true
-
-/***/ }
-/******/ ]);
\ No newline at end of file

Reply via email to