framework7rails 0.9.7 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (230) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +17 -0
  3. data/Framework7-0.9.6/.gitignore +5 -0
  4. data/Framework7-0.9.6/.jshintrc +33 -0
  5. data/Framework7-0.9.6/.travis.yml +5 -0
  6. data/Framework7-0.9.6/CHANGELOG.md +342 -0
  7. data/Framework7-0.9.6/Gruntfile.js +560 -0
  8. data/Framework7-0.9.6/LICENSE +20 -0
  9. data/Framework7-0.9.6/README.md +113 -0
  10. data/Framework7-0.9.6/apps/todo7/css/todo7.css +208 -0
  11. data/Framework7-0.9.6/apps/todo7/img/Icon-152.png +0 -0
  12. data/Framework7-0.9.6/apps/todo7/img/bg.jpg +0 -0
  13. data/Framework7-0.9.6/apps/todo7/img/icon-114.png +0 -0
  14. data/Framework7-0.9.6/apps/todo7/img/icon-120.png +0 -0
  15. data/Framework7-0.9.6/apps/todo7/img/icon-144.png +0 -0
  16. data/Framework7-0.9.6/apps/todo7/img/icon-57.png +0 -0
  17. data/Framework7-0.9.6/apps/todo7/img/icon-72.png +0 -0
  18. data/Framework7-0.9.6/apps/todo7/img/icon-76.png +0 -0
  19. data/Framework7-0.9.6/apps/todo7/index.html +112 -0
  20. data/Framework7-0.9.6/apps/todo7/jade/index.jade +99 -0
  21. data/Framework7-0.9.6/apps/todo7/js/todo7.js +102 -0
  22. data/Framework7-0.9.6/apps/todo7/less/todo7.less +221 -0
  23. data/Framework7-0.9.6/apps/todo7/manifest.php +27 -0
  24. data/Framework7-0.9.6/apps/weather7/css/weather7.css +291 -0
  25. data/Framework7-0.9.6/apps/weather7/img/bg.jpg +0 -0
  26. data/Framework7-0.9.6/apps/weather7/img/icon-114.png +0 -0
  27. data/Framework7-0.9.6/apps/weather7/img/icon-120.png +0 -0
  28. data/Framework7-0.9.6/apps/weather7/img/icon-144.png +0 -0
  29. data/Framework7-0.9.6/apps/weather7/img/icon-152.png +0 -0
  30. data/Framework7-0.9.6/apps/weather7/img/icon-57.png +0 -0
  31. data/Framework7-0.9.6/apps/weather7/img/icon-72.png +0 -0
  32. data/Framework7-0.9.6/apps/weather7/img/icon-76.png +0 -0
  33. data/Framework7-0.9.6/apps/weather7/img/logo.png +0 -0
  34. data/Framework7-0.9.6/apps/weather7/img/yahoo-logo.png +0 -0
  35. data/Framework7-0.9.6/apps/weather7/index.html +127 -0
  36. data/Framework7-0.9.6/apps/weather7/jade/index.jade +113 -0
  37. data/Framework7-0.9.6/apps/weather7/js/weather7.js +213 -0
  38. data/Framework7-0.9.6/apps/weather7/less/weather7.less +294 -0
  39. data/Framework7-0.9.6/apps/weather7/manifest.php +29 -0
  40. data/Framework7-0.9.6/bower.json +30 -0
  41. data/Framework7-0.9.6/dist/about.html +28 -0
  42. data/Framework7-0.9.6/dist/css/framework7.css +4922 -0
  43. data/Framework7-0.9.6/dist/css/framework7.min.css +15 -0
  44. data/Framework7-0.9.6/dist/css/framework7.rtl.css +427 -0
  45. data/Framework7-0.9.6/dist/css/framework7.rtl.min.css +1 -0
  46. data/Framework7-0.9.6/dist/css/framework7.themes.css +279 -0
  47. data/Framework7-0.9.6/dist/css/framework7.themes.min.css +1 -0
  48. data/Framework7-0.9.6/dist/css/my-app.css +0 -0
  49. data/Framework7-0.9.6/dist/form.html +229 -0
  50. data/Framework7-0.9.6/dist/img/i-f7.png +0 -0
  51. data/Framework7-0.9.6/dist/img/i-form-calendar.png +0 -0
  52. data/Framework7-0.9.6/dist/img/i-form-comment.png +0 -0
  53. data/Framework7-0.9.6/dist/img/i-form-email.png +0 -0
  54. data/Framework7-0.9.6/dist/img/i-form-gender.png +0 -0
  55. data/Framework7-0.9.6/dist/img/i-form-name.png +0 -0
  56. data/Framework7-0.9.6/dist/img/i-form-password.png +0 -0
  57. data/Framework7-0.9.6/dist/img/i-form-settings.png +0 -0
  58. data/Framework7-0.9.6/dist/img/i-form-tel.png +0 -0
  59. data/Framework7-0.9.6/dist/img/i-form-toggle.png +0 -0
  60. data/Framework7-0.9.6/dist/img/i-form-url.png +0 -0
  61. data/Framework7-0.9.6/dist/index.html +102 -0
  62. data/Framework7-0.9.6/dist/js/framework7.js +7479 -0
  63. data/Framework7-0.9.6/dist/js/framework7.min.js +18 -0
  64. data/Framework7-0.9.6/dist/js/my-app.js +48 -0
  65. data/Framework7-0.9.6/dist/services.html +28 -0
  66. data/Framework7-0.9.6/examples/split-view/about.html +19 -0
  67. data/Framework7-0.9.6/examples/split-view/css/my-app.css +23 -0
  68. data/Framework7-0.9.6/examples/split-view/index.html +135 -0
  69. data/Framework7-0.9.6/examples/split-view/jade/about.jade +15 -0
  70. data/Framework7-0.9.6/examples/split-view/jade/index.jade +107 -0
  71. data/Framework7-0.9.6/examples/split-view/jade/left-page-1.jade +15 -0
  72. data/Framework7-0.9.6/examples/split-view/jade/left-page-2.jade +15 -0
  73. data/Framework7-0.9.6/examples/split-view/jade/services.jade +15 -0
  74. data/Framework7-0.9.6/examples/split-view/js/my-app.js +15 -0
  75. data/Framework7-0.9.6/examples/split-view/left-page-1.html +19 -0
  76. data/Framework7-0.9.6/examples/split-view/left-page-2.html +19 -0
  77. data/Framework7-0.9.6/examples/split-view/less/my-app.less +23 -0
  78. data/Framework7-0.9.6/examples/split-view/services.html +19 -0
  79. data/Framework7-0.9.6/examples/split-view-panel/about.html +20 -0
  80. data/Framework7-0.9.6/examples/split-view-panel/css/my-app.css +56 -0
  81. data/Framework7-0.9.6/examples/split-view-panel/index.html +135 -0
  82. data/Framework7-0.9.6/examples/split-view-panel/jade/about.jade +18 -0
  83. data/Framework7-0.9.6/examples/split-view-panel/jade/index.jade +107 -0
  84. data/Framework7-0.9.6/examples/split-view-panel/jade/left-page-1.jade +15 -0
  85. data/Framework7-0.9.6/examples/split-view-panel/jade/left-page-2.jade +15 -0
  86. data/Framework7-0.9.6/examples/split-view-panel/jade/services.jade +18 -0
  87. data/Framework7-0.9.6/examples/split-view-panel/js/my-app.js +15 -0
  88. data/Framework7-0.9.6/examples/split-view-panel/left-page-1.html +19 -0
  89. data/Framework7-0.9.6/examples/split-view-panel/left-page-2.html +19 -0
  90. data/Framework7-0.9.6/examples/split-view-panel/less/my-app.less +62 -0
  91. data/Framework7-0.9.6/examples/split-view-panel/services.html +20 -0
  92. data/Framework7-0.9.6/examples/tab-bar/about.html +19 -0
  93. data/Framework7-0.9.6/examples/tab-bar/css/my-app.css +34 -0
  94. data/Framework7-0.9.6/examples/tab-bar/index.html +238 -0
  95. data/Framework7-0.9.6/examples/tab-bar/jade/about.jade +15 -0
  96. data/Framework7-0.9.6/examples/tab-bar/jade/index.jade +189 -0
  97. data/Framework7-0.9.6/examples/tab-bar/jade/services.jade +15 -0
  98. data/Framework7-0.9.6/examples/tab-bar/js/my-app.js +15 -0
  99. data/Framework7-0.9.6/examples/tab-bar/less/my-app.less +35 -0
  100. data/Framework7-0.9.6/examples/tab-bar/services.html +19 -0
  101. data/Framework7-0.9.6/kitchen-sink/about.html +22 -0
  102. data/Framework7-0.9.6/kitchen-sink/accordion.html +171 -0
  103. data/Framework7-0.9.6/kitchen-sink/color-themes.html +42 -0
  104. data/Framework7-0.9.6/kitchen-sink/contacts.html +190 -0
  105. data/Framework7-0.9.6/kitchen-sink/core-features.html +70 -0
  106. data/Framework7-0.9.6/kitchen-sink/css/kitchen-sink.css +233 -0
  107. data/Framework7-0.9.6/kitchen-sink/deep-2.html +22 -0
  108. data/Framework7-0.9.6/kitchen-sink/deep-navbar-2.html +19 -0
  109. data/Framework7-0.9.6/kitchen-sink/deep-navbar-3.html +19 -0
  110. data/Framework7-0.9.6/kitchen-sink/deep-navbar.html +18 -0
  111. data/Framework7-0.9.6/kitchen-sink/forms-buttons.html +64 -0
  112. data/Framework7-0.9.6/kitchen-sink/forms-checkboxes.html +200 -0
  113. data/Framework7-0.9.6/kitchen-sink/forms-elements.html +359 -0
  114. data/Framework7-0.9.6/kitchen-sink/forms-selects.html +72 -0
  115. data/Framework7-0.9.6/kitchen-sink/forms-storage.html +181 -0
  116. data/Framework7-0.9.6/kitchen-sink/forms.html +56 -0
  117. data/Framework7-0.9.6/kitchen-sink/grid.html +140 -0
  118. data/Framework7-0.9.6/kitchen-sink/hide-navbar-toolbar.html +42 -0
  119. data/Framework7-0.9.6/kitchen-sink/img/beach.jpg +0 -0
  120. data/Framework7-0.9.6/kitchen-sink/img/lock.jpg +0 -0
  121. data/Framework7-0.9.6/kitchen-sink/img/monkey.jpg +0 -0
  122. data/Framework7-0.9.6/kitchen-sink/img/mountains.jpg +0 -0
  123. data/Framework7-0.9.6/kitchen-sink/index.html +466 -0
  124. data/Framework7-0.9.6/kitchen-sink/infinite-scroll-load.php +19 -0
  125. data/Framework7-0.9.6/kitchen-sink/infinite-scroll.html +119 -0
  126. data/Framework7-0.9.6/kitchen-sink/jade/about.jade +19 -0
  127. data/Framework7-0.9.6/kitchen-sink/jade/accordion.jade +133 -0
  128. data/Framework7-0.9.6/kitchen-sink/jade/color-themes.jade +37 -0
  129. data/Framework7-0.9.6/kitchen-sink/jade/contacts.jade +115 -0
  130. data/Framework7-0.9.6/kitchen-sink/jade/core-features.jade +74 -0
  131. data/Framework7-0.9.6/kitchen-sink/jade/deep-navbar-2.jade +15 -0
  132. data/Framework7-0.9.6/kitchen-sink/jade/deep-navbar-3.jade +15 -0
  133. data/Framework7-0.9.6/kitchen-sink/jade/deep-navbar.jade +15 -0
  134. data/Framework7-0.9.6/kitchen-sink/jade/forms-buttons.jade +71 -0
  135. data/Framework7-0.9.6/kitchen-sink/jade/forms-checkboxes.jade +152 -0
  136. data/Framework7-0.9.6/kitchen-sink/jade/forms-elements.jade +239 -0
  137. data/Framework7-0.9.6/kitchen-sink/jade/forms-selects.jade +60 -0
  138. data/Framework7-0.9.6/kitchen-sink/jade/forms-storage.jade +134 -0
  139. data/Framework7-0.9.6/kitchen-sink/jade/forms.jade +52 -0
  140. data/Framework7-0.9.6/kitchen-sink/jade/grid.jade +110 -0
  141. data/Framework7-0.9.6/kitchen-sink/jade/hide-navbar-toolbar.jade +38 -0
  142. data/Framework7-0.9.6/kitchen-sink/jade/index.jade +427 -0
  143. data/Framework7-0.9.6/kitchen-sink/jade/infinite-scroll.jade +20 -0
  144. data/Framework7-0.9.6/kitchen-sink/jade/list-view.jade +266 -0
  145. data/Framework7-0.9.6/kitchen-sink/jade/login-screen-embedded.jade +22 -0
  146. data/Framework7-0.9.6/kitchen-sink/jade/login-screen.jade +20 -0
  147. data/Framework7-0.9.6/kitchen-sink/jade/media-lists.jade +170 -0
  148. data/Framework7-0.9.6/kitchen-sink/jade/messages.jade +71 -0
  149. data/Framework7-0.9.6/kitchen-sink/jade/modals.jade +36 -0
  150. data/Framework7-0.9.6/kitchen-sink/jade/navbars-toolbars.jade +43 -0
  151. data/Framework7-0.9.6/kitchen-sink/jade/no-navbar-toolbar.jade +7 -0
  152. data/Framework7-0.9.6/kitchen-sink/jade/no-navbar.jade +7 -0
  153. data/Framework7-0.9.6/kitchen-sink/jade/no-toolbar.jade +17 -0
  154. data/Framework7-0.9.6/kitchen-sink/jade/notifications.jade +23 -0
  155. data/Framework7-0.9.6/kitchen-sink/jade/panels.jade +21 -0
  156. data/Framework7-0.9.6/kitchen-sink/jade/photo-browser.jade +36 -0
  157. data/Framework7-0.9.6/kitchen-sink/jade/popover.jade +21 -0
  158. data/Framework7-0.9.6/kitchen-sink/jade/preloader.jade +31 -0
  159. data/Framework7-0.9.6/kitchen-sink/jade/pull-to-refresh.jade +44 -0
  160. data/Framework7-0.9.6/kitchen-sink/jade/searchbar.jade +146 -0
  161. data/Framework7-0.9.6/kitchen-sink/jade/slider-custom.jade +23 -0
  162. data/Framework7-0.9.6/kitchen-sink/jade/slider-horizontal.jade +18 -0
  163. data/Framework7-0.9.6/kitchen-sink/jade/slider-multiple.jade +48 -0
  164. data/Framework7-0.9.6/kitchen-sink/jade/slider-nested.jade +26 -0
  165. data/Framework7-0.9.6/kitchen-sink/jade/slider-space-between.jade +18 -0
  166. data/Framework7-0.9.6/kitchen-sink/jade/slider-vertical.jade +18 -0
  167. data/Framework7-0.9.6/kitchen-sink/jade/slider.jade +57 -0
  168. data/Framework7-0.9.6/kitchen-sink/jade/sortable-list.jade +107 -0
  169. data/Framework7-0.9.6/kitchen-sink/jade/swipe-delete.jade +195 -0
  170. data/Framework7-0.9.6/kitchen-sink/jade/tabbar-labels.jade +54 -0
  171. data/Framework7-0.9.6/kitchen-sink/jade/tabbar.jade +50 -0
  172. data/Framework7-0.9.6/kitchen-sink/jade/tabs.jade +34 -0
  173. data/Framework7-0.9.6/kitchen-sink/jade/transitions.jade +27 -0
  174. data/Framework7-0.9.6/kitchen-sink/js/kitchen-sink.js +442 -0
  175. data/Framework7-0.9.6/kitchen-sink/less/kitchen-sink.less +245 -0
  176. data/Framework7-0.9.6/kitchen-sink/list-view.html +318 -0
  177. data/Framework7-0.9.6/kitchen-sink/login-screen-embedded.html +36 -0
  178. data/Framework7-0.9.6/kitchen-sink/login-screen.html +21 -0
  179. data/Framework7-0.9.6/kitchen-sink/media-lists.html +173 -0
  180. data/Framework7-0.9.6/kitchen-sink/messages.html +84 -0
  181. data/Framework7-0.9.6/kitchen-sink/modals.html +33 -0
  182. data/Framework7-0.9.6/kitchen-sink/navbars-toolbars.html +46 -0
  183. data/Framework7-0.9.6/kitchen-sink/no-navbar-toolbar.html +11 -0
  184. data/Framework7-0.9.6/kitchen-sink/no-navbar.html +11 -0
  185. data/Framework7-0.9.6/kitchen-sink/no-toolbar.html +18 -0
  186. data/Framework7-0.9.6/kitchen-sink/notifications.html +21 -0
  187. data/Framework7-0.9.6/kitchen-sink/panel-right2.html +16 -0
  188. data/Framework7-0.9.6/kitchen-sink/panel-right3.html +16 -0
  189. data/Framework7-0.9.6/kitchen-sink/panels.html +23 -0
  190. data/Framework7-0.9.6/kitchen-sink/photo-browser.html +36 -0
  191. data/Framework7-0.9.6/kitchen-sink/popover.html +21 -0
  192. data/Framework7-0.9.6/kitchen-sink/preloader.html +28 -0
  193. data/Framework7-0.9.6/kitchen-sink/pull-to-refresh.html +52 -0
  194. data/Framework7-0.9.6/kitchen-sink/searchbar.html +233 -0
  195. data/Framework7-0.9.6/kitchen-sink/slider-custom.html +28 -0
  196. data/Framework7-0.9.6/kitchen-sink/slider-horizontal.html +29 -0
  197. data/Framework7-0.9.6/kitchen-sink/slider-multiple.html +89 -0
  198. data/Framework7-0.9.6/kitchen-sink/slider-nested.html +32 -0
  199. data/Framework7-0.9.6/kitchen-sink/slider-space-between.html +29 -0
  200. data/Framework7-0.9.6/kitchen-sink/slider-vertical.html +29 -0
  201. data/Framework7-0.9.6/kitchen-sink/slider.html +54 -0
  202. data/Framework7-0.9.6/kitchen-sink/sortable-list.html +137 -0
  203. data/Framework7-0.9.6/kitchen-sink/swipe-delete.html +216 -0
  204. data/Framework7-0.9.6/kitchen-sink/tabbar-labels.html +51 -0
  205. data/Framework7-0.9.6/kitchen-sink/tabbar.html +0 -0
  206. data/Gemfile +4 -0
  207. data/LICENSE.txt +22 -0
  208. data/README.md +109 -0
  209. data/Rakefile +2 -0
  210. data/framework7rails.gemspec +23 -0
  211. data/install_local.sh +2 -0
  212. data/lib/framework7rails/version.rb +4 -0
  213. data/lib/framework7rails.rb +8 -0
  214. data/update_from_vendor.rb +40 -0
  215. data/vendor/assets/images/i-f7.png +0 -0
  216. data/vendor/assets/images/i-form-calendar.png +0 -0
  217. data/vendor/assets/images/i-form-comment.png +0 -0
  218. data/vendor/assets/images/i-form-email.png +0 -0
  219. data/vendor/assets/images/i-form-gender.png +0 -0
  220. data/vendor/assets/images/i-form-name.png +0 -0
  221. data/vendor/assets/images/i-form-password.png +0 -0
  222. data/vendor/assets/images/i-form-settings.png +0 -0
  223. data/vendor/assets/images/i-form-tel.png +0 -0
  224. data/vendor/assets/images/i-form-toggle.png +0 -0
  225. data/vendor/assets/images/i-form-url.png +0 -0
  226. data/vendor/assets/javascripts/framework7.js +8288 -0
  227. data/vendor/assets/javascripts/framework7.js.map +1 -0
  228. data/vendor/assets/stylesheets/framework7.css +5078 -0
  229. data/vendor/assets/stylesheets/framework7.themes.css +279 -0
  230. metadata +231 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 49a9b85a736ef5161b4950703882c46224ae906c
4
- data.tar.gz: 39f5e27ac37e4db18e508454e186c24eb2948ede
3
+ metadata.gz: 30aed291e13046917386b5344ef751bf57aa24a9
4
+ data.tar.gz: 5a1e09968c5c6fda66431c7e3fdd12ad12fbce30
5
5
  SHA512:
6
- metadata.gz: 61ad6415a13426dfcabd3a2acc3990126c12877b951a3222bf4917de68f28118b8d2c9458c4987c3366f91e6980ab1969e1879ae98ce262487193571ee24bc0e
7
- data.tar.gz: 453fca2f017d16e9517d7c3ef06dceab9eabb2bf4f0a85f7dc4f3aef136c71c37ea10ac2a632aa6b607286e6abce3ffff1b788336662ae3424f2274cb314a463
6
+ metadata.gz: 554684e609b378015e00a74f75016fbdf541b144b807fae851be9f9d5a00b19d41ad7444586a7227257bc6d6a9028e9b592491152ee5ed7677ef6a77de48751e
7
+ data.tar.gz: 0e7a249b897aa5a64c0e2533542faba2799cc3b414e78b745bbfc1c28a47adefaebb8712a96bf03a2b4c8371a840f2f8c11a675b08ef652c18c272eef1718fa6
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
15
+ .DS_Store
16
+ .DS_STORE
17
+ *.gem
@@ -0,0 +1,5 @@
1
+ .DS_Store
2
+ node_modules
3
+ build
4
+ custom
5
+ npm-debug.log
@@ -0,0 +1,33 @@
1
+ {
2
+ "node" : true,
3
+ "browser" : true,
4
+ "esnext" : true,
5
+ "bitwise" : false,
6
+ "curly" : false,
7
+ "eqeqeq" : true,
8
+ "eqnull" : true,
9
+ "immed" : true,
10
+ "latedef" : true,
11
+ "newcap" : true,
12
+ "noarg" : true,
13
+ "undef" : true,
14
+ "strict" : true,
15
+ "trailing" : true,
16
+ "smarttabs" : true,
17
+ "quotmark" : "single",
18
+ "indent" : 4,
19
+ "white" : true,
20
+ "globals":{
21
+ "document": true,
22
+ "WebKitCSSMatrix": true,
23
+ "Document": true,
24
+ "window": true,
25
+ "$":true,
26
+ "t7": true,
27
+ "Framework7":true,
28
+ "Template7":true,
29
+ "Event":true,
30
+ "DocumentTouch":true,
31
+ "app":true
32
+ }
33
+ }
@@ -0,0 +1,5 @@
1
+ language: node_js
2
+ node_js:
3
+ - "0.10"
4
+ before_script:
5
+ - npm install -g grunt-cli
@@ -0,0 +1,342 @@
1
+ # Change Log
2
+
3
+ ## Framework7 v0.9.6 - Updated on September 12, 2014
4
+ * Template7
5
+ * Now Framework7 comes with its own template engine - Template7. Which has totally the same syntax as Handlebars, but a way faster in templates compilation and rendering, especially in mobile Safari (up to 4 times faster!)
6
+ * It is now globally available in window as `Template7` function
7
+ * Modals
8
+ * App's `modalTemplate` and `modalActionsTemplate` now accept Template7 html template string
9
+ * Swipeouts
10
+ * Totally reworked swipeouts layout (not compatible with previous F7 versions) and behavior to make them like in iOS 8. Now they could be on both sides (on left or/and right) and support overswipe to immediately trigger action without click on action button
11
+ * Status bar overlay now detected correctly on iPhone 6 and 6 plus
12
+ * Slider
13
+ * New .update() method to update slides, positions, sizes, pagination if you add slides dynamically
14
+ * New onTransitionStart/End callbacks parameters
15
+ * Totally prevent click events and custom handlers when `preventClicks` enabled
16
+ * Accordion
17
+ * Now triggers "open", "opened", "close", "closed" events
18
+ * Action Sheet
19
+ * Now could be automatically converted to Popover on iPad if you call it with new two-arguments syntax .actionSheet(target, buttons)
20
+ * Pull To Refresh
21
+ * Pull to refresh content receives additional "pull-down" class when pulled down
22
+ * Fixed issues on iOS 8
23
+ * Fast Clicks
24
+ * New "Active state" feature to make :active state behavior like in apps not like in web. With two additional App parameters: `activeState` and `activeStateElements`. It is enabled by default
25
+ * Now fast clicks could be disabled on some specific element with "no-fastclick" class
26
+ * New `fastClicksDistanceThreshold` app parameter to set distance threshold to prevent short taps
27
+ * Fixed issue with input:file
28
+ * Dom7
29
+ * Support to add event listeners with "capture", so the full syntax now is `.on(eventName, target, listener, capture)` or `.on(eventName, listener, capture)`
30
+ * New `.once` method to add event listener that should be executed only once
31
+ * JSONP requests now support "error" callback and script load timeout
32
+ * Notifications
33
+ * Prevent .onClick callback function when user clicks on "close" icon
34
+ * Highly reworked App router:
35
+ * New `uniqueHistory` App/View initialization parameter, that will remove duplicate pages from View history and from DOM
36
+ * Now, there will be only one page in View's DOM if `swipeBackPage` and `preloadPreviousPage` App/View parameters are set to `false`
37
+ * New View's `.loadPage(options)` method that accepts object with options: `animatePages`, `ignoreCache`, `url`, `content`, `forceUrl`, `reload`, `reloadPrevious`
38
+ * New View's `.goBack(options)` method that accepts object with options: `animatePages`, `ignoreCache`, `url`, `content`, `forceUrl`, `reload`, `reloadPrevious`
39
+ * Links now also support these options as data- attributes, like `<a href="#" data-animatePages="true" data-ignoreCache="true" ... >`
40
+ * New View's .loadPage's shortcuts methods:
41
+ * `.loadPage(url)` - load page by specified url
42
+ * `.loadContent(content)` - load page with specified content
43
+ * `.reloadPage(url)` - reload currenly active view's page from specified URL
44
+ * `.reloadPreviousPage(url)` - the same but for previous (left) view's page
45
+ * `.reloadContent(content)` - reload currenly active view's page with passed HTML content
46
+ * `.reloadPreviousContent(content)` - the same but for previous (left) view's page
47
+ * `.refreshPage()` - refresh currenly active view's page from specified URL
48
+ * `.refreshPreviousPage()` - the same but for previous (left) view's page
49
+ * Tab bar
50
+ * New additional classes `tabbar-labels-fixed` and `tabbar-labels-through` (for Views, View, Pages and Page) for pages with tab bar to set required bottom padding on `page-content`
51
+ * ToDo7 / Weather7 apps updated with support of new swipeouts and now they use Template7 for templating
52
+
53
+ ## Framework7 v0.9.5 - Updated on August 15, 2014
54
+ * Colors
55
+ * Now Framework7 supports color themes: 10 default iOS colors (red, green, blue, lightblue, gray, white, black, orange, yellow, pink) that can be applied to any interactive elements (icons, links, buttons, form elements)
56
+ * There are also introduced layout themes (with additional framework7.themes.css file) which contains 2 additional layout themes: dark and white. These themes change look of whole app.
57
+ * Core
58
+ * Links support additional "with-animation" class name to force animation if it is disabled in App/View parameters
59
+ * Reworked `allowPageChange` flag. Now it is linked to View. This allows to load pages in multiple Views at the same time
60
+ * View
61
+ * New `onSwipeBackMove` callback function parameter that will be executed during swipe back
62
+ * Also triggers `swipebackmove` event during swipe back
63
+ * Dom7
64
+ * Dom7 is totally restructured, now it is a global Window function and can be accessible from everywhere
65
+ * New `.scrollLeft(left, duration)`, `.scrollTo(left, top, duration)` methods
66
+ * Fixed issue with multiple JSONP requests at the same time
67
+ * `.removeClass` now will remove "class" attribute if class name is not passed as argument
68
+ * Custom build
69
+ * Included missed Pull To Refresh' css styles
70
+ * Styles
71
+ * Half-pixel iOS 8 borders are available only for retina iOS screens
72
+ * Fixed list view items borders on nested lists and accordions
73
+ * Device API
74
+ * `html` also has "retina" class on HiDPI screens
75
+ * Panels
76
+ * Resolved conflict with swipe panel and swipeouts
77
+ * New `swipePanelCloseOpposite` app parameter that also allows to close opposite panel with swipe
78
+ * Fixed multi touch issue
79
+ * Content block
80
+ * Now can be inset with additional `inset` and `tablet-inset` classes
81
+ * Messages/Message Bar
82
+ * Fixed crashes on iOS 8
83
+ * Message Bar has additional `data-max-height` attribute to set its max grow height
84
+ * Photo Browser
85
+ * New `onOpen`, `onClose`, `onSwipeToClose` callback functions parameters
86
+ * New `ofText` parameter allows customisation of "of" word in photos counter "3 of 5"
87
+ * Fixed next/prev icons opacity when there is only one photo browser slide
88
+ * Resolved z-indexes conflict with Popup
89
+ * Fixed panning ability on Android
90
+ * Smart Select
91
+ * Smart select's `<option>` now support additional `data-option-icon` and `data-option-image` attributes to set appropriate media element on opened Smart select page
92
+ * `data-backtext`, `data-pagetitle`, `data-backonselect` attributes are changed to `data-back-text`, `data-page-title`, `data-back-onselect`
93
+ * Icons
94
+ * Checkbox and radio icons images now moved to CSS with SVG
95
+ * Fast Clicks
96
+ * Automatically trigger blur on form inputs on Android when it is required
97
+ * Pull To Refresh
98
+ * New `app.pullToRefreshTrigger` method to trigger pull to refresh manually
99
+ * Improved scrolling performance on long lists
100
+ * Fixed issue with continuous browser repaint because of preloader animation
101
+ * Fixed Android's "lost focus" bug
102
+ * Grid
103
+ * Now grid is responsive, and number of columns could be changed on Phone/Tablet with additional class like `.col-50.tablet-33`
104
+ * Tabs
105
+ * Tabs links now support more complex layout, now each tab's link could be placed in different Dom parts and on different level
106
+ * Pages
107
+ * `pageData` now has additional `swipeBack` property within pageBefore/AfterAnimation callback to detect that page was animated after swipe back
108
+ * `pageData` now has additional `navbarInnerContainer` property with related Navbar inner (only for Dynamic Navbar)
109
+ * Action Sheet
110
+ * Action Sheet button doesn't support "red" property anymore. Now it supports "color" property where you may specify any of 10 default colors
111
+ * Lot of minor fixes
112
+
113
+ ### 0.9.5 Breaking changes!
114
+ * Icons now haven't color name in class, there are no more "icon-back-blue", "icon-bars-blue", etc. Now they are just "icon-back", "icon-bars", etc. Their color could be changed with introduced color themes.
115
+ * Badges don't support additional badge-red/green/etc. classes anymore. Their color could be changed with introduced color themes
116
+ * There is no more `app.allowPageChange` flag. Now this flag is linked to each View
117
+ * Because of Dom7 now globally available, the `Framework7.$` dom export is now deprecated and will be removed in next release
118
+ * Smart select `data-backtext`, `data-pagetitle`, `data-backonselect` attributes are changed to `data-back-text`, `data-page-title`, `data-back-onselect`
119
+
120
+
121
+ ## Framework7 v0.9.4 - Updated on July 26, 2014
122
+
123
+ * New Framework7 grunt custom library builder where you can include only required components
124
+ * Half-pixel (0.5px) borders in iOS 8 for list views, navbars, toolbars, modals, etc.
125
+ * Core
126
+ * New "statusbarOverlay" parameter to overwrite automatic statusbar overlay detection
127
+ * Searchbar
128
+ * Now it may consider and hide item-dividers and grouped list if nothing found there with two new App's options: searchbarHideDividers and searchbarHideGroups. By default, they are enabled (true)
129
+ * Smart Select
130
+ * Now it consider and doesn't output "disabled" options and will not be opened if it has "disabled" class or attribute
131
+ * Dom7
132
+ * New .removeAttr(attrName) method to remove attribute
133
+ * Now it is possible to detach live event listeners with the same "live" syntax `$('something').off('click', '.target', listener)`
134
+ * Icons
135
+ * New "icon-camera" (in message bar) and "icon-plus" icons
136
+ * Views
137
+ * New "url" parameter to specify View's default (startup) URL
138
+ * Tabs
139
+ * Now it is possible to swith multiple tabs with single tab-link by using "data-tab" attribute instead of "#" href attribute
140
+ * Modals
141
+ * New "tablet-fullscreen" class on Popup to make fullscreen popup in iPad
142
+
143
+ ## Framework7 v0.9.3 - Updated on July 20, 2014
144
+
145
+ * New Accordion component
146
+ * New Login Screen component
147
+ * Messages
148
+ * Avatars now hide/show with transition
149
+ * Fixes white space wrap along long-words messages
150
+ * Views
151
+ * New "no-swipeback" class for .page to prevent Swipe Back on this page
152
+ * Grid
153
+ * Grid reworked to flex-box layout
154
+ * Fast Clicks
155
+ * Improved behavior on form fields
156
+ * Slider
157
+ * New "onOppositeTouchMove" callback
158
+ * Photo Browser
159
+ * New "swipeToClose" parameter that allows to close photo browser on swipe up/down
160
+
161
+ ## Framework7 v0.9.2 - Updated on July 12, 2014
162
+
163
+ * New Message Bar component to be used with messages
164
+ * Totally reworked Messages, now they support avatar and user name
165
+ * Core:
166
+ * New "externalLinks" (array) parameter to set custom external links
167
+ * New "cacheIgnoreGetParameters" parameter to ignore caching for same urls with different GET parameters
168
+ * New "pushStateRoot" parameter that allow to use PushState with empty pushStateSeparator
169
+ * Smart Select:
170
+ * Support for "optgroup" tag which will be converted do list dividers on smart select page
171
+ * Support for "multiple" attribute that will convert radios to checkboxes on smart select page
172
+ * New "smartSelectBackOnSelect" option that will close Smart Select page when user choose item
173
+ * Modals:
174
+ * New Login Modal available by myApp.modalLogin() method
175
+ * New Password Modal available by myApp.modalPassword() method
176
+ * New "close-popover" class for links to close popover
177
+ * New .onClick(modal, index) callback function for custom Modal that receives index number of clicked button
178
+ * Searchbar:
179
+ * New option to specify "found" and "not-found" containers using data-searchbar-found and data-searchbar-not-found attributes
180
+ * Dom7:
181
+ * .next() and .prev() methods now support matching selector as an argument
182
+ * New .scrollTop(position, duration) method for animated scroll on element or to get element's scroll top position if no arguments passed
183
+ * Page Callbacks API:
184
+ * Support for "*" page name value to trigger callback for all pages
185
+ * Photo Browser
186
+ * Videos support with &lt;video&gt; or within embedded iframes
187
+ * Captions
188
+ * New syntax to define photos, not it could be array of objects with "url" and "caption" properties
189
+ * New Photo Browser parameters: captionsTheme, expositionHideCaptions, captionsTemplate, captionTemplate, objectTemplate
190
+ * View:
191
+ * New .activePage property that contains pageData of currently active page
192
+ * Styles:
193
+ * New disabled styles for elements with "disabled" class or attribute
194
+ * Fixes:
195
+ * Fixed issues with caching of Dynamic content
196
+ * Fixed swipeouts when they are in hidden tabs
197
+ * Corrected z-index relations between modals, overlays and status bar overlay
198
+
199
+ ## Framework7 v0.9.0 - Updated on June 28, 2014
200
+
201
+ * Full RTL support for right to left languages (Arabic, Hebrew)!
202
+ * New Page callbacks API
203
+ * Smart Select: configurable page title and back link text via data-pagetitle and data-backtext attributes, new smartSelectBackText app parameter
204
+ * Dom7: new .prop(prop, value) method to set/access HTMLElement properties (checked, disabled, etc.)
205
+ * Search Bar: improved search for items that don't match to "search-in"; new "enableSearch", "disableSearch", "clearSearch" events
206
+ * Slider: support for fractional slidesPerView value
207
+ * Improved behavior of nested Views
208
+ * New ".tablet-inset" class for List Views to make them inset only on tablets (iPad)
209
+ * Navbar: fixed layout with only "right" element
210
+ * Changed preloader's CSS animation name to prevent conflicts with Font Awesome
211
+
212
+ ## Framework7 v0.8.8 - Updated on June 21, 2014
213
+
214
+ * New App and View option to disable page animations - "animatePages:false"
215
+ * Improved behavior of Notifications
216
+ * Improved performance of Swipeouts
217
+ * Fixed Ajax loading when using ajaxLinks parameter
218
+ * Slider: prevent unnecessary clicks during touch move
219
+ * Preprocess now has new parameter - next(content) callback function to continue page loading from asynchronous thread
220
+ * Plugins API: new "swipePanelSetTransform" plugins hook; now it is possible to preprocess content by plugin
221
+ * Push State: new "pushStateNoAnimation" and "pushStateSeparator" app parameters
222
+ * Reset styles for "input[type=datetime-local]"
223
+
224
+ ## Framework7 v0.8.7 - Updated on June 15, 2014
225
+
226
+ * New Notifications component
227
+ * New Search Bar component
228
+ * Slider: autoplay feature; fixed styles for nested sliders
229
+ * Dom7: fixed .off method to remove multiple events; new .nextAll and .prevAll methods
230
+ * Device API: new "gt-" (greater than) iOS version classes on HTML element
231
+ * Smart Select: now inherits no-navbar/toolbar props from page; now available with Search Bar
232
+ * Pluigns API: new 'pageBeforeRemove' plugin hook
233
+ * Separate overlays for Modals (modal, action sheet, popover) and Popups
234
+ * Reset styles for "input[type=number]"
235
+
236
+ ## Framework7 v0.8.6 - Updated on May 31, 2014
237
+
238
+ * New Infinite Scroll component
239
+ * New Plugins API
240
+ * Slider: prevent links clicks during swipe
241
+ * Swipeout: new "swipeout" callback which returns opened progress
242
+ * Views: swipeBackPage App parameters could be overwrited for View
243
+ * Views: totally reworked to Classes
244
+ * Navbar: dynamic navbars now triggers 'navbarInit' event when added to DOM
245
+ * Tabs: new method app.showTab(tab) to switch tabs programmatically
246
+
247
+ ## Framework7 v0.8.5 - Updated on May 24, 2014
248
+
249
+ * Many minor fixes
250
+
251
+ ## Framework7 v0.8.4 - Updated on May 17, 2014
252
+
253
+ * New Slider component
254
+ * New Photo Browser component
255
+ * New arguments for predefined Modals (Alert, Confirm, Prompt) - myApp.alert(text, title, callbackOk, callbackCancel)
256
+ * "X-Requested-With: XMLHttpRequest" header for non crossdomain Ajax requests
257
+ * "cacheIgnoreList" app parameter renamed to "cacheIgnore"
258
+ * New transitional/animated Tabs
259
+ * New "pageBeforeRemove" Page callback
260
+ * Fixed swipe-panels when swiping during opened Modal/Overlay
261
+ * Removed Rails distributive
262
+ * New $.getTranslate(el, axis) DOM7 helper
263
+ * Lot of minor fixes and improvements
264
+
265
+ ## Framework7 v0.8.2 - Updated on May 8, 2014
266
+
267
+ * Automatically submit forms using Ajax with additional "ajax-submit" and "ajax-submit-onchange" classes on form
268
+ * New Ajax DOM lib methods $.ajax(), $.get(), $.post(), $.getJSON()
269
+ * New DOM lib util $.serializeObject(obj)
270
+ * Ability to use Messages with new messages on top
271
+ * "cacheIgnoreList" app parameter to add array of URLs that should not be cached
272
+ * New app.support object with features detection
273
+ * Fix for submit button on iOS
274
+
275
+ ## Framework7 v0.8.0 - Updated on May 2, 2014
276
+
277
+ * Sortable lists
278
+ * Disable caching for specific pages with "nocache" parameter in URL
279
+ * New "swipePanelActiveArea" parameter to allow swipe panels on specific distance from side of screen
280
+ * Totally reworked internal FastClicks library
281
+ * "device" object moved to Framework7.prototype for easy access before app intialization
282
+ * New DOM7 methods - .insertAfter()
283
+ * Fixed/improved DOM7 methods - .data(), .html(), .css()
284
+ * Better animation sync for dynamic navbar and pages
285
+ * New "viewClass", "viewMainClass", "viewsClass" parameters allow to have custom classes on Views
286
+
287
+ ## Framework7 v0.7.8 - Updated on April 27, 2014
288
+
289
+ * pushState, FastClicks improvements
290
+ * Allow modal without title
291
+ * New .data() DOM7 method
292
+ * Fix styles for popup with statusbar overlay
293
+
294
+ ## Framework7 v0.7.7 - Updated on April 24, 2014
295
+
296
+ * pushState navigation
297
+ * line-height fix for textarea
298
+
299
+ ## Framework7 v0.7.6 - Updated on April 19, 2014
300
+
301
+ * Lot of new shortcut methods for DOM7 library: click(), blur(), focus(), focusin(), focusout(), keyup(), keydown(), keypress(), submit(), change(), mousedown(), mousemove(), mouseup(), mouseenter(), mouseleave(), mouseout(), mouseover(), touchstart(), touchend(), touchmove(), resize(), scroll()
302
+ * New .eq() DOM7 method
303
+ * fixed navbar/toolbar vertical alignment
304
+
305
+ ## Framework7 v0.7.5 - Updated on April 18, 2014
306
+
307
+ * Swipe panels
308
+ * Forms Storage
309
+ * Preprocess Ajax content with "preprocess" callback parameter
310
+ * Cross-browser checkbox switch
311
+ * Fixes for navbar resizing
312
+
313
+ ## Framework7 v0.7.4 - Updated on April 12, 2014
314
+
315
+ * Smart selects
316
+ * Smarter Ajax parser to parse files with different few pages in different views
317
+ * Removed deprecated onPageInit/onPageBeforeInit callbacks from app and view
318
+ * Refactored pages.js structure to bring mutual methods
319
+ * Animated navbar’s left back icon when ".left" is ".sliding"
320
+ * Fixed and improvements
321
+
322
+ ## Framework7 v0.7.2 - Updated on April 11, 2014
323
+
324
+ * improved dist/ app
325
+ * small improvements and fixes in form elements
326
+
327
+ ## Framework7 v0.7.1 - Updated on April 10, 2014
328
+
329
+ * "show" event on active tab
330
+ * fix for status bar detection
331
+ * check for proper params in addView
332
+ * size navbar on tab "show"
333
+
334
+ ## Framework7 v0.7.0 - Updated on April 9, 2014
335
+
336
+ * new fast clicks library
337
+ * .tap() method removed and deprecated!
338
+ * domCache to keep prev pages in view
339
+ * dynamically generated popup and popover
340
+ * improved device object
341
+ * selectors engine available via Framework7.$
342
+