tenon 1.1.8 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (579) hide show
  1. checksums.yaml +4 -4
  2. data/README.rdoc +768 -69
  3. data/Rakefile +7 -13
  4. data/app/assets/javascripts/tenon/application.js +4 -0
  5. data/app/controllers/tenon/assets_controller.rb +22 -23
  6. data/app/controllers/tenon/base_controller.rb +22 -13
  7. data/app/controllers/tenon/index_controller.rb +0 -4
  8. data/app/controllers/tenon/item_versions_controller.rb +20 -8
  9. data/app/controllers/tenon/resources_controller.rb +100 -30
  10. data/app/controllers/tenon/simple_resources_controller.rb +7 -7
  11. data/app/controllers/tenon/styleguides_controller.rb +10 -0
  12. data/app/decorators/tenon/application_decorator.rb +4 -8
  13. data/app/decorators/tenon/asset_decorator.rb +0 -25
  14. data/app/filterers/tenon/generic_filterer.rb +24 -0
  15. data/app/form_builders/tenon/form_builder.rb +189 -19
  16. data/app/helpers/tenon/active_link_to_helper.rb +9 -0
  17. data/app/helpers/tenon/application_helper.rb +4 -23
  18. data/app/helpers/tenon/asset_helper.rb +2 -2
  19. data/app/helpers/tenon/back_to_index_path_helper.rb +13 -0
  20. data/app/helpers/tenon/breadcrumbs_helper.rb +33 -0
  21. data/app/helpers/tenon/flash_helper.rb +14 -0
  22. data/app/helpers/tenon/icon_helper.rb +7 -0
  23. data/app/helpers/tenon/input_block_helper.rb +25 -0
  24. data/app/helpers/tenon/item_version_helper.rb +22 -9
  25. data/app/helpers/tenon/nav_helper.rb +21 -17
  26. data/app/helpers/tenon/piece_helper.rb +2 -7
  27. data/app/helpers/tenon/platform_hints_helper.rb +3 -5
  28. data/app/helpers/tenon/styleguide_helper.rb +15 -0
  29. data/app/helpers/tenon/tenon_content_helper.rb +11 -6
  30. data/app/helpers/tenon/tenon_helper.rb +19 -9
  31. data/app/models/tenon/application_record.rb +5 -0
  32. data/app/models/tenon/asset.rb +2 -2
  33. data/app/models/tenon/item_asset.rb +1 -1
  34. data/app/models/tenon/item_version.rb +1 -1
  35. data/app/models/tenon/styleguide.rb +11 -0
  36. data/app/models/tenon/tenon_content/piece.rb +13 -13
  37. data/app/models/tenon/tenon_content/row.rb +1 -1
  38. data/app/models/tenon/tenon_content/row_types/four_column_image.rb +4 -4
  39. data/app/models/tenon/tenon_content/row_types/four_column_image_and_text.rb +8 -8
  40. data/app/models/tenon/tenon_content/row_types/four_column_text.rb +4 -4
  41. data/app/models/tenon/tenon_content/row_types/full_width_embedded_content.rb +1 -1
  42. data/app/models/tenon/tenon_content/row_types/full_width_image.rb +1 -1
  43. data/app/models/tenon/tenon_content/row_types/full_width_text.rb +1 -1
  44. data/app/models/tenon/tenon_content/row_types/left_image_right_text.rb +2 -2
  45. data/app/models/tenon/tenon_content/row_types/left_text_right_image.rb +2 -2
  46. data/app/models/tenon/tenon_content/row_types/left_wrapped_image_with_text.rb +2 -2
  47. data/app/models/tenon/tenon_content/row_types/right_wrapped_image_with_text.rb +2 -2
  48. data/app/models/tenon/tenon_content/row_types/six_column_image.rb +6 -6
  49. data/app/models/tenon/tenon_content/row_types/six_column_image_and_text.rb +12 -12
  50. data/app/models/tenon/tenon_content/row_types/three_column_image.rb +3 -3
  51. data/app/models/tenon/tenon_content/row_types/three_column_image_and_text.rb +6 -6
  52. data/app/models/tenon/tenon_content/row_types/three_column_text.rb +3 -3
  53. data/app/models/tenon/tenon_content/row_types/two_column_image.rb +2 -2
  54. data/app/models/tenon/tenon_content/row_types/two_column_image_and_text.rb +4 -4
  55. data/app/models/tenon/tenon_content/row_types/two_column_text.rb +2 -2
  56. data/app/models/tenon/tenon_content/row_types/two_column_with_background_image.rb +3 -3
  57. data/app/models/tenon/tenon_content/row_types.rb +17 -17
  58. data/app/policies/my_settings_policy.rb +2 -0
  59. data/app/policies/tenon/application_policy.rb +63 -0
  60. data/app/policies/tenon/asset_policy.rb +4 -0
  61. data/app/policies/tenon/item_version_policy.rb +4 -0
  62. data/app/serializers/item_version_serializer.rb +23 -0
  63. data/app/serializers/tenon/application_serializer.rb +37 -0
  64. data/app/serializers/tenon/asset_serializer.rb +5 -0
  65. data/app/serializers/tenon/paginating_serializer.rb +18 -0
  66. data/app/views/layouts/tenon/application.html.haml +28 -18
  67. data/app/views/tenon/assets/_form.html.haml +29 -12
  68. data/app/views/tenon/assets/crop.html.haml +13 -13
  69. data/app/views/tenon/assets/edit.html.haml +1 -12
  70. data/app/views/tenon/assets/index.html.haml +5 -19
  71. data/app/views/tenon/assets/new.html.haml +1 -0
  72. data/app/views/tenon/fields/_asset.html.haml +26 -27
  73. data/app/views/tenon/fields/_base.html.haml +7 -0
  74. data/app/views/tenon/fields/_base_inline.html.haml +4 -0
  75. data/app/views/tenon/fields/_check_box.html.haml +9 -0
  76. data/app/views/tenon/fields/_collection_select.html.haml +4 -0
  77. data/app/views/tenon/fields/_color_field.html.haml +3 -0
  78. data/app/views/tenon/fields/_date_picker.html.haml +2 -0
  79. data/app/views/tenon/fields/_date_time_picker.html.haml +6 -0
  80. data/app/views/tenon/fields/_email_field.html.haml +2 -0
  81. data/app/views/tenon/fields/_inline_check_box.html.haml +5 -0
  82. data/app/views/tenon/fields/_inline_radio_button.html.haml +5 -0
  83. data/app/views/tenon/fields/_number_field.html.haml +2 -0
  84. data/app/views/tenon/fields/_password_field.html.haml +2 -0
  85. data/app/views/tenon/fields/_phone_field.html.haml +2 -0
  86. data/app/views/tenon/fields/_radio_button.html.haml +9 -0
  87. data/app/views/tenon/fields/_rich_text.html.haml +3 -6
  88. data/app/views/tenon/fields/_select.html.haml +3 -0
  89. data/app/views/tenon/fields/_text_area.html.haml +2 -0
  90. data/app/views/tenon/fields/_text_field.html.haml +2 -0
  91. data/app/views/tenon/fields/_title_text_field.html.haml +2 -0
  92. data/app/views/tenon/fields/_url_field.html.haml +2 -0
  93. data/app/views/tenon/index/index.html.haml +8 -29
  94. data/app/views/tenon/item_assets/new.html.haml +20 -22
  95. data/app/views/tenon/item_versions/_item_version.json.jbuilder +4 -4
  96. data/app/views/tenon/item_versions/index.html.haml +14 -6
  97. data/app/views/tenon/item_versions/new.html.haml +8 -10
  98. data/app/views/tenon/settings/_contact.html.haml +14 -19
  99. data/app/views/tenon/settings/_general.html.haml +15 -11
  100. data/app/views/tenon/settings/_seo.html.haml +10 -9
  101. data/app/views/tenon/settings/show.html.haml +12 -31
  102. data/app/views/tenon/shared/_account_dropdown.html.haml +6 -0
  103. data/app/views/tenon/shared/_app_info.html.haml +5 -0
  104. data/app/views/tenon/shared/_breadcrumbs.html.haml +1 -0
  105. data/app/views/tenon/shared/_burger.html.haml +5 -0
  106. data/app/views/tenon/shared/_default_form_toolbar.html.haml +26 -0
  107. data/app/views/tenon/shared/_draft_controls.html.haml +18 -0
  108. data/app/views/tenon/shared/_i18n_language_nav.html.haml +2 -2
  109. data/app/views/tenon/shared/_main_nav.html.haml +3 -14
  110. data/app/views/tenon/shared/_platform_hints.html.haml +15 -15
  111. data/app/views/tenon/shared/_seo_fields.html.haml +8 -6
  112. data/app/views/tenon/shared/_site_title.html.haml +6 -0
  113. data/app/views/tenon/shared/_util_nav.html.haml +4 -27
  114. data/app/views/tenon/shared/_version_warning.html.haml +11 -11
  115. data/app/views/tenon/styleguides/_buttons.html.haml +118 -0
  116. data/app/views/tenon/styleguides/_colors.html.haml +59 -0
  117. data/app/views/tenon/styleguides/_forms.html.haml +4 -0
  118. data/app/views/tenon/styleguides/_icons.html.haml +21 -0
  119. data/app/views/tenon/styleguides/_typography.html.haml +27 -0
  120. data/app/views/tenon/styleguides/buttons/_colors.html.haml +43 -0
  121. data/app/views/tenon/styleguides/buttons/_styles.html.haml +59 -0
  122. data/app/views/tenon/styleguides/colors/_helpers.html.haml +48 -0
  123. data/app/views/tenon/styleguides/colors/_variables.html.haml +31 -0
  124. data/app/views/tenon/styleguides/forms/_default.html.haml +92 -0
  125. data/app/views/tenon/styleguides/forms/_html5.html.haml +31 -0
  126. data/app/views/tenon/styleguides/forms/_tenon_content.html.haml +15 -0
  127. data/app/views/tenon/styleguides/index.html.haml +52 -0
  128. data/app/views/tenon/styleguides/typography/_blockquote.html.haml +7 -0
  129. data/app/views/tenon/styleguides/typography/_inline.html.haml +8 -0
  130. data/app/views/tenon/styleguides/typography/_lists.html.haml +40 -0
  131. data/app/views/tenon/styleguides/typography/_paragraphs.html.haml +17 -0
  132. data/app/views/tenon/styleguides/typography/_small.html.haml +18 -0
  133. data/app/views/tenon/styleguides/typography/_styles.html.haml +14 -0
  134. data/app/views/tenon/styleguides/typography/_variables.html.haml +43 -0
  135. data/app/views/tenon/tenon_content/_display.html.haml +2 -2
  136. data/app/views/tenon/tenon_content/_embed_modal.html.haml +3 -3
  137. data/app/views/tenon/tenon_content/_fields.html.haml +21 -35
  138. data/app/views/tenon/tenon_content/_row.html.haml +14 -13
  139. data/app/views/tenon/tenon_content/{_builder.html.haml → _tenon_content.html.haml} +2 -2
  140. data/app/views/tenon/tenon_content/piece_types/form/_background_image.html.haml +6 -6
  141. data/app/views/tenon/tenon_content/piece_types/form/_embedded_content.html.haml +2 -1
  142. data/app/views/tenon/tenon_content/piece_types/form/_image.html.haml +37 -29
  143. data/app/views/tenon/tenon_content/row_types/display/_four_column_image.html.haml +4 -4
  144. data/app/views/tenon/tenon_content/row_types/display/_four_column_image_and_text.html.haml +3 -3
  145. data/app/views/tenon/tenon_content/row_types/display/_four_column_text.html.haml +4 -4
  146. data/app/views/tenon/tenon_content/row_types/display/_full_width_embedded_content.html.haml +3 -3
  147. data/app/views/tenon/tenon_content/row_types/display/_full_width_image.html.haml +3 -3
  148. data/app/views/tenon/tenon_content/row_types/display/_full_width_text.html.haml +3 -3
  149. data/app/views/tenon/tenon_content/row_types/display/_left_image_right_text.html.haml +8 -8
  150. data/app/views/tenon/tenon_content/row_types/display/_left_text_right_image.html.haml +7 -7
  151. data/app/views/tenon/tenon_content/row_types/display/_left_wrapped_image_with_text.html.haml +6 -6
  152. data/app/views/tenon/tenon_content/row_types/display/_right_wrapped_image_with_text.html.haml +7 -7
  153. data/app/views/tenon/tenon_content/row_types/display/_six_column_image.html.haml +4 -4
  154. data/app/views/tenon/tenon_content/row_types/display/_six_column_image_and_text.html.haml +5 -5
  155. data/app/views/tenon/tenon_content/row_types/display/_three_column_image.html.haml +4 -4
  156. data/app/views/tenon/tenon_content/row_types/display/_three_column_image_and_text.html.haml +4 -4
  157. data/app/views/tenon/tenon_content/row_types/display/_three_column_text.html.haml +4 -4
  158. data/app/views/tenon/tenon_content/row_types/display/_two_column_image.html.haml +3 -3
  159. data/app/views/tenon/tenon_content/row_types/display/_two_column_image_and_text.html.haml +4 -4
  160. data/app/views/tenon/tenon_content/row_types/display/_two_column_text.html.haml +3 -3
  161. data/app/views/tenon/tenon_content/row_types/display/_two_column_with_background_image.html.haml +3 -3
  162. data/app/views/tenon/tenon_content/row_types/form/_four_column_image.html.haml +2 -2
  163. data/app/views/tenon/tenon_content/row_types/form/_four_column_image_and_text.html.haml +3 -3
  164. data/app/views/tenon/tenon_content/row_types/form/_four_column_text.html.haml +3 -3
  165. data/app/views/tenon/tenon_content/row_types/form/_full_width_embedded_content.html.haml +3 -3
  166. data/app/views/tenon/tenon_content/row_types/form/_full_width_image.html.haml +3 -3
  167. data/app/views/tenon/tenon_content/row_types/form/_full_width_text.html.haml +3 -3
  168. data/app/views/tenon/tenon_content/row_types/form/_left_image_right_text.html.haml +9 -8
  169. data/app/views/tenon/tenon_content/row_types/form/_left_text_right_image.html.haml +6 -6
  170. data/app/views/tenon/tenon_content/row_types/form/_left_wrapped_image_with_text.html.haml +7 -7
  171. data/app/views/tenon/tenon_content/row_types/form/_right_wrapped_image_with_text.html.haml +7 -7
  172. data/app/views/tenon/tenon_content/row_types/form/_six_column_image.html.haml +2 -2
  173. data/app/views/tenon/tenon_content/row_types/form/_six_column_image_and_text.html.haml +3 -3
  174. data/app/views/tenon/tenon_content/row_types/form/_three_column_image.html.haml +2 -2
  175. data/app/views/tenon/tenon_content/row_types/form/_three_column_image_and_text.html.haml +3 -3
  176. data/app/views/tenon/tenon_content/row_types/form/_three_column_text.html.haml +3 -3
  177. data/app/views/tenon/tenon_content/row_types/form/_two_column_image.html.haml +2 -2
  178. data/app/views/tenon/tenon_content/row_types/form/_two_column_image_and_text.html.haml +3 -3
  179. data/app/views/tenon/tenon_content/row_types/form/_two_column_text.html.haml +3 -3
  180. data/app/views/tenon/tenon_content/row_types/form/_two_column_with_background_image.html.haml +2 -2
  181. data/config/initializers/class_extensions/hash.rb +1 -1
  182. data/config/initializers/client_side_validations.rb +27 -0
  183. data/config/initializers/tenon.rb +0 -14
  184. data/config/routes.rb +10 -46
  185. data/db/migrate/20151117171000_drop_default_tenon_resources.rb +15 -0
  186. data/db/migrate/20160119185645_remove_tenon_users.rb +7 -0
  187. data/db/migrate/20160126123154_remove_tenon_callouts_subscribers.rb +8 -0
  188. data/db/migrate/20160126194219_convert_piece_size_to_int.rb +6 -0
  189. data/lib/ckeditor/plugins/pastefromword/filter/default.js +1 -1
  190. data/lib/generators/tenon/scaffold/scaffold_generator.rb +52 -27
  191. data/lib/generators/tenon/scaffold/templates/controller.rb +7 -4
  192. data/lib/generators/tenon/scaffold/templates/policy.rb +2 -0
  193. data/lib/generators/tenon/scaffold/templates/serializer.rb +2 -0
  194. data/lib/generators/tenon/scaffold/templates/view__form.html.haml +49 -54
  195. data/lib/generators/tenon/scaffold/templates/view_edit.html.haml +1 -8
  196. data/lib/generators/tenon/scaffold/templates/view_index.html.haml +8 -24
  197. data/lib/generators/tenon/scaffold/templates/view_new.html.haml +1 -8
  198. data/lib/tasks/tenon_tasks.rake +2 -2
  199. data/lib/templates/active_record/model/model.rb +12 -13
  200. data/lib/templates/migration/templates/create_table_migration.rb +1 -1
  201. data/lib/tenon/can_be_foreign.rb +1 -1
  202. data/lib/tenon/engine.rb +26 -32
  203. data/lib/tenon/filterers/base_filterer.rb +64 -0
  204. data/lib/tenon/has_history/attr_serializer.rb +6 -6
  205. data/lib/tenon/proxy_attachment.rb +2 -2
  206. data/lib/tenon/version.rb +1 -1
  207. data/lib/tenon.rb +1 -3
  208. data/vendor/assets/javascripts/bootstrap.modal.js +1 -1
  209. data/vendor/assets/javascripts/date_picker/picker.date.js +1429 -0
  210. data/vendor/assets/javascripts/date_picker/picker.js +1122 -0
  211. data/vendor/assets/javascripts/number-to-words.es6 +35 -0
  212. data/vendor/assets/stylesheets/bootstrap.scss +1 -1
  213. metadata +206 -972
  214. data/app/assets/images/tenon/icons/delete.png +0 -0
  215. data/app/assets/images/tenon/icons/edit.png +0 -0
  216. data/app/assets/images/tenon/icons/thumbdown.png +0 -0
  217. data/app/assets/images/tenon/icons/thumbup.png +0 -0
  218. data/app/assets/images/tenon/select2-spinner.gif +0 -0
  219. data/app/assets/images/tenon/select2.png +0 -0
  220. data/app/assets/images/tenon/select2x2.png +0 -0
  221. data/app/assets/javascripts/tenon/controllers/assets.js.coffee +0 -3
  222. data/app/assets/javascripts/tenon/controllers/index.js.coffee +0 -6
  223. data/app/assets/javascripts/tenon/controllers/tenon.js.coffee +0 -1
  224. data/app/assets/javascripts/tenon/features/asset_attachment.js.coffee +0 -37
  225. data/app/assets/javascripts/tenon/features/asset_cropping.js.coffee +0 -49
  226. data/app/assets/javascripts/tenon/features/asset_detachment.js.coffee +0 -11
  227. data/app/assets/javascripts/tenon/features/asset_list_post_crop_handler.js.coffee +0 -15
  228. data/app/assets/javascripts/tenon/features/asset_uploader.js.coffee +0 -88
  229. data/app/assets/javascripts/tenon/features/box_toggles.js.coffee +0 -17
  230. data/app/assets/javascripts/tenon/features/cocoon_hooks.js.coffee +0 -12
  231. data/app/assets/javascripts/tenon/features/date_time_picker.js.coffee +0 -25
  232. data/app/assets/javascripts/tenon/features/editor.js.coffee +0 -24
  233. data/app/assets/javascripts/tenon/features/file_select_widget.js.erb +0 -39
  234. data/app/assets/javascripts/tenon/features/flash.js.coffee +0 -13
  235. data/app/assets/javascripts/tenon/features/focus_first_field.js.coffee +0 -8
  236. data/app/assets/javascripts/tenon/features/hamburger_navigation.js.coffee +0 -26
  237. data/app/assets/javascripts/tenon/features/header_menu.js.coffee +0 -20
  238. data/app/assets/javascripts/tenon/features/i18n_fields.js.coffee +0 -23
  239. data/app/assets/javascripts/tenon/features/infinite_loading.js.coffee +0 -12
  240. data/app/assets/javascripts/tenon/features/item_version_autosave.js.coffee +0 -35
  241. data/app/assets/javascripts/tenon/features/item_version_index_handler.js.coffee +0 -3
  242. data/app/assets/javascripts/tenon/features/main_menu.js.coffee +0 -11
  243. data/app/assets/javascripts/tenon/features/modal_forms.js.coffee +0 -44
  244. data/app/assets/javascripts/tenon/features/modal_windows.js.coffee +0 -104
  245. data/app/assets/javascripts/tenon/features/multiple_asset_attachment.js.coffee +0 -8
  246. data/app/assets/javascripts/tenon/features/nested_fields.js +0 -95
  247. data/app/assets/javascripts/tenon/features/nested_lists.js +0 -10
  248. data/app/assets/javascripts/tenon/features/nested_set_writer.js.coffee +0 -65
  249. data/app/assets/javascripts/tenon/features/new_item_version_handler.js.coffee +0 -32
  250. data/app/assets/javascripts/tenon/features/pagination.js.coffee +0 -21
  251. data/app/assets/javascripts/tenon/features/protect_changes.js.coffee +0 -25
  252. data/app/assets/javascripts/tenon/features/quick_search.js.coffee +0 -41
  253. data/app/assets/javascripts/tenon/features/record_approval.js.coffee +0 -33
  254. data/app/assets/javascripts/tenon/features/record_boolean_toggle.js.coffee +0 -37
  255. data/app/assets/javascripts/tenon/features/record_deletion.js.coffee +0 -24
  256. data/app/assets/javascripts/tenon/features/record_list.js.coffee +0 -86
  257. data/app/assets/javascripts/tenon/features/record_list_updater.js.coffee +0 -56
  258. data/app/assets/javascripts/tenon/features/s3_direct_upload.js.coffee +0 -43
  259. data/app/assets/javascripts/tenon/features/sidebar_active_links.js.coffee +0 -20
  260. data/app/assets/javascripts/tenon/features/sortable_nested_fields.js.coffee +0 -17
  261. data/app/assets/javascripts/tenon/features/tenon_content/aesthetics.js.coffee +0 -31
  262. data/app/assets/javascripts/tenon/features/tenon_content/asset_attachment.js.coffee +0 -15
  263. data/app/assets/javascripts/tenon/features/tenon_content/asset_link.js.coffee +0 -11
  264. data/app/assets/javascripts/tenon/features/tenon_content/base.js.coffee +0 -16
  265. data/app/assets/javascripts/tenon/features/tenon_content/bottombar_toggler.js.coffee +0 -15
  266. data/app/assets/javascripts/tenon/features/tenon_content/caption_toggler.js.coffee +0 -11
  267. data/app/assets/javascripts/tenon/features/tenon_content/column_sizing.js.coffee +0 -53
  268. data/app/assets/javascripts/tenon/features/tenon_content/column_swap.js.coffee +0 -44
  269. data/app/assets/javascripts/tenon/features/tenon_content/editor.js.coffee +0 -34
  270. data/app/assets/javascripts/tenon/features/tenon_content/embedded_content_modal_handler.js.coffee +0 -12
  271. data/app/assets/javascripts/tenon/features/tenon_content/image_asset_link.js.coffee +0 -5
  272. data/app/assets/javascripts/tenon/features/tenon_content/image_controls.js.coffee +0 -63
  273. data/app/assets/javascripts/tenon/features/tenon_content/image_links.js.coffee +0 -54
  274. data/app/assets/javascripts/tenon/features/tenon_content/library.js.coffee +0 -39
  275. data/app/assets/javascripts/tenon/features/tenon_content/library_filter.js.coffee +0 -17
  276. data/app/assets/javascripts/tenon/features/tenon_content/pop_out.js.coffee +0 -46
  277. data/app/assets/javascripts/tenon/features/tenon_content/post_crop_handler.js.coffee +0 -22
  278. data/app/assets/javascripts/tenon/features/tenon_content/sidebar_navigation.js.coffee +0 -26
  279. data/app/assets/javascripts/tenon/features/tenon_content/sortable.js.coffee +0 -18
  280. data/app/assets/javascripts/tenon/features/tenon_content/stretch_to_fill.js.coffee +0 -50
  281. data/app/assets/javascripts/tenon/features/tenon_content/wrapped_sizing.js.coffee +0 -48
  282. data/app/assets/javascripts/tenon/features/tenon_content.js.coffee +0 -1
  283. data/app/assets/javascripts/tenon/features/video_feeds.js.coffee +0 -4
  284. data/app/assets/javascripts/tenon/manifest.json +0 -44
  285. data/app/assets/javascripts/tenon/medium-on-tenon.js +0 -1465
  286. data/app/assets/javascripts/tenon/templates/assets/asset_field.jst.eco +0 -17
  287. data/app/assets/javascripts/tenon/templates/assets/asset_progress.jst.eco +0 -8
  288. data/app/assets/javascripts/tenon/templates/assets/asset_row.jst.eco +0 -21
  289. data/app/assets/javascripts/tenon/templates/assets/asset_select.jst.eco +0 -1
  290. data/app/assets/javascripts/tenon/templates/comments/comment_row.jst.eco +0 -23
  291. data/app/assets/javascripts/tenon/templates/contacts/contact_row.jst.eco +0 -56
  292. data/app/assets/javascripts/tenon/templates/errors.jst.eco +0 -13
  293. data/app/assets/javascripts/tenon/templates/events/event_row.jst.eco +0 -22
  294. data/app/assets/javascripts/tenon/templates/galleries/gallery_row.jst.eco +0 -12
  295. data/app/assets/javascripts/tenon/templates/item_versions/item_version_row.jst.eco +0 -22
  296. data/app/assets/javascripts/tenon/templates/modal.jst.eco +0 -14
  297. data/app/assets/javascripts/tenon/templates/pages/page_row.jst.eco +0 -21
  298. data/app/assets/javascripts/tenon/templates/post_categories/post_category_row.jst.eco +0 -12
  299. data/app/assets/javascripts/tenon/templates/posts/post_row.jst.eco +0 -30
  300. data/app/assets/javascripts/tenon/templates/redirects/redirect_row.jst.eco +0 -18
  301. data/app/assets/javascripts/tenon/templates/tenon_callouts/tenon_callout_row.jst.eco +0 -19
  302. data/app/assets/javascripts/tenon/templates/tenon_content/popped_out.jst.eco +0 -6
  303. data/app/assets/javascripts/tenon/templates/users/user_row.jst.eco +0 -21
  304. data/app/assets/javascripts/tenon/tenon.js +0 -68
  305. data/app/assets/javascripts/tenon/tenon_dispatcher.js.coffee +0 -25
  306. data/app/assets/javascripts/tenon/tenon_manifest.js +0 -45
  307. data/app/assets/stylesheets/tenon/colors-custom.scss +0 -25
  308. data/app/assets/stylesheets/tenon/colors-named.scss +0 -22
  309. data/app/assets/stylesheets/tenon/helpers.scss +0 -28
  310. data/app/assets/stylesheets/tenon/layout/assets.scss +0 -49
  311. data/app/assets/stylesheets/tenon/layout/breakpoints.scss +0 -48
  312. data/app/assets/stylesheets/tenon/layout/global.scss +0 -36
  313. data/app/assets/stylesheets/tenon/layout/grid.scss +0 -145
  314. data/app/assets/stylesheets/tenon/layout/main-nav.scss +0 -149
  315. data/app/assets/stylesheets/tenon/layout/margins.scss +0 -3
  316. data/app/assets/stylesheets/tenon/layout/mobile.scss +0 -5
  317. data/app/assets/stylesheets/tenon/layout/sidebar.scss +0 -102
  318. data/app/assets/stylesheets/tenon/layout/util-nav.scss +0 -51
  319. data/app/assets/stylesheets/tenon/mixins.scss +0 -81
  320. data/app/assets/stylesheets/tenon/styleguide.scss +0 -6
  321. data/app/assets/stylesheets/tenon/tenon.scss +0 -71
  322. data/app/assets/stylesheets/tenon/typography.scss +0 -65
  323. data/app/assets/stylesheets/tenon/ui/alerts.scss +0 -65
  324. data/app/assets/stylesheets/tenon/ui/asset-attachment.scss +0 -136
  325. data/app/assets/stylesheets/tenon/ui/asset-cropping.scss +0 -51
  326. data/app/assets/stylesheets/tenon/ui/asset-uploads.scss +0 -26
  327. data/app/assets/stylesheets/tenon/ui/buttons.scss +0 -65
  328. data/app/assets/stylesheets/tenon/ui/callouts.scss +0 -26
  329. data/app/assets/stylesheets/tenon/ui/comments.scss +0 -57
  330. data/app/assets/stylesheets/tenon/ui/forms.scss +0 -204
  331. data/app/assets/stylesheets/tenon/ui/generic-loader.scss +0 -21
  332. data/app/assets/stylesheets/tenon/ui/header-tools.scss +0 -116
  333. data/app/assets/stylesheets/tenon/ui/i18n.scss +0 -18
  334. data/app/assets/stylesheets/tenon/ui/list-style-toggle.scss +0 -39
  335. data/app/assets/stylesheets/tenon/ui/login.scss +0 -97
  336. data/app/assets/stylesheets/tenon/ui/medium-editor.scss +0 -114
  337. data/app/assets/stylesheets/tenon/ui/modals.scss +0 -179
  338. data/app/assets/stylesheets/tenon/ui/pagination.scss +0 -113
  339. data/app/assets/stylesheets/tenon/ui/progress-bars.scss +0 -131
  340. data/app/assets/stylesheets/tenon/ui/quick-search.scss +0 -20
  341. data/app/assets/stylesheets/tenon/ui/record-grids.scss +0 -95
  342. data/app/assets/stylesheets/tenon/ui/record-lists.scss +0 -154
  343. data/app/assets/stylesheets/tenon/ui/section-headers.scss +0 -30
  344. data/app/assets/stylesheets/tenon/ui/select2-custom.scss +0 -70
  345. data/app/assets/stylesheets/tenon/ui/tables.scss +0 -19
  346. data/app/assets/stylesheets/tenon/ui/tabs.scss +0 -7
  347. data/app/assets/stylesheets/tenon/ui/tenon-content-library.scss +0 -80
  348. data/app/assets/stylesheets/tenon/ui/tenon-content-popped-out.scss +0 -92
  349. data/app/assets/stylesheets/tenon/ui/tenon-content.scss +0 -318
  350. data/app/assets/stylesheets/tenon/ui/thinking.scss +0 -3
  351. data/app/assets/stylesheets/tenon/ui/toolbox.scss +0 -31
  352. data/app/assets/stylesheets/tenon/z-indexes.scss +0 -35
  353. data/app/assets/stylesheets/tenon_addons.scss +0 -1
  354. data/app/controllers/tenon/comments_controller.rb +0 -51
  355. data/app/controllers/tenon/contacts_controller.rb +0 -65
  356. data/app/controllers/tenon/events_controller.rb +0 -9
  357. data/app/controllers/tenon/galleries_controller.rb +0 -9
  358. data/app/controllers/tenon/pages_controller.rb +0 -51
  359. data/app/controllers/tenon/post_categories_controller.rb +0 -9
  360. data/app/controllers/tenon/posts_controller.rb +0 -28
  361. data/app/controllers/tenon/redirects_controller.rb +0 -25
  362. data/app/controllers/tenon/tenon_callouts_controller.rb +0 -7
  363. data/app/controllers/tenon/users_controller.rb +0 -64
  364. data/app/decorators/tenon/comment_decorator.rb +0 -22
  365. data/app/decorators/tenon/contact_decorator.rb +0 -13
  366. data/app/decorators/tenon/event_decorator.rb +0 -11
  367. data/app/decorators/tenon/gallery_decorator.rb +0 -4
  368. data/app/decorators/tenon/page_decorator.rb +0 -11
  369. data/app/decorators/tenon/post_category_decorator.rb +0 -4
  370. data/app/decorators/tenon/post_decorator.rb +0 -4
  371. data/app/decorators/tenon/redirect_decorator.rb +0 -2
  372. data/app/decorators/tenon/tenon_callout_decorator.rb +0 -4
  373. data/app/decorators/tenon/user_decorator.rb +0 -4
  374. data/app/mailers/tenon/comment_mailer.rb +0 -16
  375. data/app/mailers/tenon/contact_mailer.rb +0 -15
  376. data/app/models/ability.rb +0 -32
  377. data/app/models/tenon/comment.rb +0 -47
  378. data/app/models/tenon/comment_subscriber.rb +0 -7
  379. data/app/models/tenon/contact.rb +0 -46
  380. data/app/models/tenon/event.rb +0 -45
  381. data/app/models/tenon/gallery.rb +0 -15
  382. data/app/models/tenon/page.rb +0 -105
  383. data/app/models/tenon/photo.rb +0 -10
  384. data/app/models/tenon/post.rb +0 -35
  385. data/app/models/tenon/post_category.rb +0 -7
  386. data/app/models/tenon/redirect.rb +0 -17
  387. data/app/models/tenon/role.rb +0 -8
  388. data/app/models/tenon/role_assignment.rb +0 -6
  389. data/app/models/tenon/s3_direct_upload.rb +0 -75
  390. data/app/models/tenon/tenon_callout.rb +0 -16
  391. data/app/models/tenon/user.rb +0 -60
  392. data/app/views/devise/confirmations/new.html.erb +0 -12
  393. data/app/views/devise/confirmations/new.html.haml +0 -0
  394. data/app/views/devise/mailer/confirmation_instructions.html.haml +0 -7
  395. data/app/views/devise/mailer/reset_password_instructions.html.haml +0 -15
  396. data/app/views/devise/mailer/unlock_instructions.html.haml +0 -9
  397. data/app/views/devise/passwords/edit.html.haml +0 -22
  398. data/app/views/devise/passwords/new.html.haml +0 -17
  399. data/app/views/devise/registrations/edit.html.haml +0 -0
  400. data/app/views/devise/registrations/new.html.haml +0 -22
  401. data/app/views/devise/sessions/new.html.haml +0 -28
  402. data/app/views/devise/shared/_links.erb +0 -19
  403. data/app/views/devise/shared/_links.haml +0 -0
  404. data/app/views/devise/unlocks/new.html.erb +0 -12
  405. data/app/views/devise/unlocks/new.html.haml +0 -0
  406. data/app/views/layouts/tenon/login.html.haml +0 -19
  407. data/app/views/tenon/assets/_asset.json.jbuilder +0 -7
  408. data/app/views/tenon/assets/_sidebar_index.html.haml +0 -18
  409. data/app/views/tenon/assets/create.json.jbuilder +0 -1
  410. data/app/views/tenon/assets/index.json.jbuilder +0 -5
  411. data/app/views/tenon/assets/update.json.jbuilder +0 -1
  412. data/app/views/tenon/comment_mailer/comment_notification.html.haml +0 -7
  413. data/app/views/tenon/comments/_sidebar_index.html.haml +0 -22
  414. data/app/views/tenon/comments/index.html.haml +0 -19
  415. data/app/views/tenon/comments/index.json.jbuilder +0 -22
  416. data/app/views/tenon/contact_mailer/contact_notification.html.haml +0 -15
  417. data/app/views/tenon/contacts/_sidebar_index.html.haml +0 -32
  418. data/app/views/tenon/contacts/index.html.haml +0 -19
  419. data/app/views/tenon/contacts/index.json.jbuilder +0 -15
  420. data/app/views/tenon/events/_form.html.haml +0 -44
  421. data/app/views/tenon/events/edit.html.haml +0 -8
  422. data/app/views/tenon/events/index.html.haml +0 -23
  423. data/app/views/tenon/events/index.json.jbuilder +0 -16
  424. data/app/views/tenon/events/new.html.haml +0 -8
  425. data/app/views/tenon/galleries/_form.html.haml +0 -38
  426. data/app/views/tenon/galleries/_photo_fields.html.haml +0 -3
  427. data/app/views/tenon/galleries/edit.html.haml +0 -8
  428. data/app/views/tenon/galleries/index.html.haml +0 -22
  429. data/app/views/tenon/galleries/index.json.jbuilder +0 -15
  430. data/app/views/tenon/galleries/new.html.haml +0 -8
  431. data/app/views/tenon/pages/_form.html.haml +0 -58
  432. data/app/views/tenon/pages/edit.html.haml +0 -8
  433. data/app/views/tenon/pages/index.html.haml +0 -23
  434. data/app/views/tenon/pages/index.json.jbuilder +0 -22
  435. data/app/views/tenon/pages/new.html.haml +0 -8
  436. data/app/views/tenon/post_categories/_form.html.haml +0 -11
  437. data/app/views/tenon/post_categories/_post_category.json.jbuilder +0 -2
  438. data/app/views/tenon/post_categories/create.json.jbuilder +0 -1
  439. data/app/views/tenon/post_categories/edit.html.haml +0 -1
  440. data/app/views/tenon/post_categories/index.html.haml +0 -30
  441. data/app/views/tenon/post_categories/index.json.jbuilder +0 -5
  442. data/app/views/tenon/post_categories/update.json.jbuilder +0 -1
  443. data/app/views/tenon/posts/_form.html.haml +0 -65
  444. data/app/views/tenon/posts/edit.html.haml +0 -8
  445. data/app/views/tenon/posts/index.html.haml +0 -27
  446. data/app/views/tenon/posts/index.json.jbuilder +0 -20
  447. data/app/views/tenon/posts/new.html.haml +0 -8
  448. data/app/views/tenon/redirects/_form.html.haml +0 -42
  449. data/app/views/tenon/redirects/_redirect.json.jbuilder +0 -3
  450. data/app/views/tenon/redirects/edit.html.haml +0 -8
  451. data/app/views/tenon/redirects/index.html.haml +0 -29
  452. data/app/views/tenon/redirects/index.json.jbuilder +0 -5
  453. data/app/views/tenon/redirects/new.html.haml +0 -8
  454. data/app/views/tenon/shared/_posts_nav.html.haml +0 -8
  455. data/app/views/tenon/shared/menu_items/_assets.html.haml +0 -3
  456. data/app/views/tenon/shared/menu_items/_comments.html.haml +0 -2
  457. data/app/views/tenon/shared/menu_items/_events.html.haml +0 -6
  458. data/app/views/tenon/shared/menu_items/_galleries.html.haml +0 -6
  459. data/app/views/tenon/shared/menu_items/_pages.html.haml +0 -6
  460. data/app/views/tenon/shared/menu_items/_posts.html.haml +0 -7
  461. data/app/views/tenon/shared/menu_items/_settings.html.haml +0 -2
  462. data/app/views/tenon/shared/menu_items/_users.html.haml +0 -2
  463. data/app/views/tenon/shared/section_header/_quick_search.html.haml +0 -3
  464. data/app/views/tenon/shared/section_header/_sidebar_toggle.html.haml +0 -1
  465. data/app/views/tenon/tenon_callouts/_form.html.haml +0 -45
  466. data/app/views/tenon/tenon_callouts/_tenon_callout.json.jbuilder +0 -1
  467. data/app/views/tenon/tenon_callouts/edit.html.haml +0 -8
  468. data/app/views/tenon/tenon_callouts/index.html.haml +0 -24
  469. data/app/views/tenon/tenon_callouts/index.json.jbuilder +0 -5
  470. data/app/views/tenon/tenon_callouts/new.html.haml +0 -8
  471. data/app/views/tenon/users/_form.html.haml +0 -50
  472. data/app/views/tenon/users/edit.html.haml +0 -8
  473. data/app/views/tenon/users/index.html.haml +0 -23
  474. data/app/views/tenon/users/index.json.jbuilder +0 -28
  475. data/app/views/tenon/users/new.html.haml +0 -8
  476. data/config/initializers/devise.rb +0 -258
  477. data/config/locales/devise.en.yml +0 -60
  478. data/config/locales/tenon.en.yml +0 -313
  479. data/db/seeds.rb +0 -47
  480. data/lib/generators/tenon/scaffold/templates/view__item.json.jbuilder +0 -1
  481. data/lib/generators/tenon/scaffold/templates/view_index.json.jbuilder +0 -5
  482. data/lib/generators/tenon/scaffold/templates/view_item_row.jst.eco +0 -13
  483. data/lib/generators/tenon/scaffold_small/scaffold_small_generator.rb +0 -8
  484. data/lib/generators/tenon/scaffold_small/templates/controller.rb +0 -19
  485. data/lib/generators/tenon/scaffold_small/templates/decorator.rb +0 -2
  486. data/lib/generators/tenon/scaffold_small/templates/view__form.html.haml +0 -26
  487. data/lib/generators/tenon/scaffold_small/templates/view__item.json.jbuilder +0 -2
  488. data/lib/generators/tenon/scaffold_small/templates/view_create.json.jbuilder +0 -1
  489. data/lib/generators/tenon/scaffold_small/templates/view_index.html.haml +0 -27
  490. data/lib/generators/tenon/scaffold_small/templates/view_index.json.jbuilder +0 -5
  491. data/lib/generators/tenon/scaffold_small/templates/view_item_row.jst.eco +0 -12
  492. data/lib/generators/tenon/scaffold_small/templates/view_update.json.jbuilder +0 -1
  493. data/lib/tenon/can_have_comments.rb +0 -16
  494. data/lib/tenon/config/events.rb +0 -29
  495. data/lib/tenon/factories/comments.rb +0 -10
  496. data/lib/tenon/factories/contacts.rb +0 -9
  497. data/lib/tenon/factories/events.rb +0 -7
  498. data/lib/tenon/factories/galleries.rb +0 -5
  499. data/lib/tenon/factories/pages.rb +0 -5
  500. data/lib/tenon/factories/posts.rb +0 -10
  501. data/lib/tenon/factories/redirects.rb +0 -9
  502. data/lib/tenon/factories/tenon_callouts.rb +0 -9
  503. data/lib/tenon/factories/users.rb +0 -26
  504. data/lib/tenon/warning_generator.rb +0 -29
  505. data/spec/controllers/tenon/assets_controller_spec.rb +0 -262
  506. data/spec/controllers/tenon/comments_controller_spec.rb +0 -173
  507. data/spec/controllers/tenon/contacts_controller_spec.rb +0 -174
  508. data/spec/controllers/tenon/index_controller_spec.rb +0 -31
  509. data/spec/controllers/tenon/item_assets_controller_spec.rb +0 -29
  510. data/spec/controllers/tenon/pages_controller_spec.rb +0 -67
  511. data/spec/controllers/tenon/posts_controller_spec.rb +0 -31
  512. data/spec/controllers/tenon/resources_controller_spec.rb +0 -352
  513. data/spec/controllers/tenon/settings_controller_spec.rb +0 -65
  514. data/spec/controllers/tenon/simple_resources_controller_spec.rb +0 -42
  515. data/spec/controllers/tenon/users_controller_spec.rb +0 -112
  516. data/spec/decorators/tenon/application_decorator_spec.rb +0 -75
  517. data/spec/decorators/tenon/asset_decorator_spec.rb +0 -101
  518. data/spec/decorators/tenon/comment_decorator_spec.rb +0 -43
  519. data/spec/decorators/tenon/contact_decorator_spec.rb +0 -24
  520. data/spec/decorators/tenon/event_decorator_spec.rb +0 -26
  521. data/spec/decorators/tenon/page_decorator_spec.rb +0 -23
  522. data/spec/decorators/tenon/tenon_content/row_type_decorator_spec.rb +0 -20
  523. data/spec/features/settings_spec.rb +0 -75
  524. data/spec/features/tenon/assets_spec.rb +0 -88
  525. data/spec/features/tenon/comments_spec.rb +0 -51
  526. data/spec/features/tenon/contacts_spec.rb +0 -51
  527. data/spec/features/tenon/events_spec.rb +0 -104
  528. data/spec/features/tenon/galleries_spec.rb +0 -107
  529. data/spec/features/tenon/i18n_spec.rb +0 -106
  530. data/spec/features/tenon/pages_spec.rb +0 -97
  531. data/spec/features/tenon/post_categories_spec.rb +0 -91
  532. data/spec/features/tenon/posts_spec.rb +0 -93
  533. data/spec/features/tenon/tenon_callouts_spec.rb +0 -101
  534. data/spec/features/tenon/users_spec.rb +0 -98
  535. data/spec/fixtures/files/test.png +0 -0
  536. data/spec/lib/tenon/asset_style_generator_spec.rb +0 -84
  537. data/spec/lib/tenon/can_be_foreign_spec.rb +0 -20
  538. data/spec/lib/tenon/can_have_comments_spec.rb +0 -22
  539. data/spec/lib/tenon/has_asset_spec.rb +0 -46
  540. data/spec/lib/tenon/has_history/attr_serializer_spec.rb +0 -63
  541. data/spec/lib/tenon/i18n_lookup_spec.rb +0 -88
  542. data/spec/lib/tenon/proxy_attachment_spec.rb +0 -96
  543. data/spec/lib/tenon/reorderable_spec.rb +0 -25
  544. data/spec/lib/tenon/tenon_content_spec.rb +0 -22
  545. data/spec/lib/tenon/warning_generator_spec.rb +0 -153
  546. data/spec/models/tenon/asset_spec.rb +0 -98
  547. data/spec/models/tenon/comment_spec.rb +0 -81
  548. data/spec/models/tenon/contact_spec.rb +0 -62
  549. data/spec/models/tenon/event_spec.rb +0 -79
  550. data/spec/models/tenon/gallery_spec.rb +0 -12
  551. data/spec/models/tenon/item_asset_spec.rb +0 -19
  552. data/spec/models/tenon/my_settings_spec.rb +0 -27
  553. data/spec/models/tenon/page_spec.rb +0 -60
  554. data/spec/models/tenon/post_spec.rb +0 -48
  555. data/spec/models/tenon/redirect_spec.rb +0 -31
  556. data/spec/models/tenon/tenon_callout_spec.rb +0 -10
  557. data/spec/models/tenon/tenon_content/row_spec.rb +0 -34
  558. data/spec/models/tenon/user_spec.rb +0 -59
  559. data/spec/services/tenon/redirector_spec.rb +0 -30
  560. data/spec/spec_helper.rb +0 -79
  561. data/spec/support/integration_example_group.rb +0 -35
  562. data/spec/support/request_helpers.rb +0 -10
  563. data/vendor/assets/javascripts/backstretch.js +0 -4
  564. data/vendor/assets/javascripts/bootstrap.collapse.js +0 -179
  565. data/vendor/assets/javascripts/bootstrap.datetimepicker.js +0 -954
  566. data/vendor/assets/javascripts/bootstrap.tabs.js +0 -135
  567. data/vendor/assets/javascripts/cufon/Aller_400.font.js +0 -7
  568. data/vendor/assets/javascripts/cufon/Aller_700.font.js +0 -7
  569. data/vendor/assets/javascripts/cufon/cufon.js +0 -7
  570. data/vendor/assets/javascripts/jquery.corner.js +0 -249
  571. data/vendor/assets/javascripts/jquery.hoverIntent.js +0 -115
  572. data/vendor/assets/javascripts/jquery.radioSlider.js +0 -55
  573. data/vendor/assets/javascripts/jscrollpane.js +0 -1435
  574. data/vendor/assets/javascripts/select2.js +0 -3
  575. data/vendor/assets/javascripts/underscore.inflection.js +0 -177
  576. data/vendor/assets/stylesheets/bootstrap.datetimepicker.css +0 -152
  577. data/vendor/assets/stylesheets/bootstrap.tables.scss +0 -201
  578. data/vendor/assets/stylesheets/jscrollpane.scss +0 -20
  579. data/vendor/assets/stylesheets/select2.css +0 -1
@@ -0,0 +1,1122 @@
1
+ /*!
2
+ * pickadate.js v3.5.0, 2014/04/13
3
+ * By Amsul, http://amsul.ca
4
+ * Hosted on http://amsul.github.io/pickadate.js
5
+ * Licensed under MIT
6
+ */
7
+
8
+ (function ( factory ) {
9
+
10
+ // AMD.
11
+ if ( typeof define == 'function' && define.amd )
12
+ define( 'picker', ['jquery'], factory )
13
+
14
+ // Node.js/browserify.
15
+ else if ( typeof exports == 'object' )
16
+ module.exports = factory( require('jquery') )
17
+
18
+ // Browser globals.
19
+ else this.Picker = factory( jQuery )
20
+
21
+ }(function( $ ) {
22
+
23
+ var $window = $( window )
24
+ var $document = $( document )
25
+ var $html = $( document.documentElement )
26
+
27
+
28
+ /**
29
+ * The picker constructor that creates a blank picker.
30
+ */
31
+ function PickerConstructor( ELEMENT, NAME, COMPONENT, OPTIONS ) {
32
+
33
+ // If there’s no element, return the picker constructor.
34
+ if ( !ELEMENT ) return PickerConstructor
35
+
36
+
37
+ var
38
+ IS_DEFAULT_THEME = false,
39
+
40
+
41
+ // The state of the picker.
42
+ STATE = {
43
+ id: ELEMENT.id || 'P' + Math.abs( ~~(Math.random() * new Date()) )
44
+ },
45
+
46
+
47
+ // Merge the defaults and options passed.
48
+ SETTINGS = COMPONENT ? $.extend( true, {}, COMPONENT.defaults, OPTIONS ) : OPTIONS || {},
49
+
50
+
51
+ // Merge the default classes with the settings classes.
52
+ CLASSES = $.extend( {}, PickerConstructor.klasses(), SETTINGS.klass ),
53
+
54
+
55
+ // The element node wrapper into a jQuery object.
56
+ $ELEMENT = $( ELEMENT ),
57
+
58
+
59
+ // Pseudo picker constructor.
60
+ PickerInstance = function() {
61
+ return this.start()
62
+ },
63
+
64
+
65
+ // The picker prototype.
66
+ P = PickerInstance.prototype = {
67
+
68
+ constructor: PickerInstance,
69
+
70
+ $node: $ELEMENT,
71
+
72
+
73
+ /**
74
+ * Initialize everything
75
+ */
76
+ start: function() {
77
+
78
+ // If it’s already started, do nothing.
79
+ if ( STATE && STATE.start ) return P
80
+
81
+
82
+ // Update the picker states.
83
+ STATE.methods = {}
84
+ STATE.start = true
85
+ STATE.open = false
86
+ STATE.type = ELEMENT.type
87
+
88
+
89
+ // Confirm focus state, convert into text input to remove UA stylings,
90
+ // and set as readonly to prevent keyboard popup.
91
+ ELEMENT.autofocus = ELEMENT == getActiveElement()
92
+ ELEMENT.readOnly = !SETTINGS.editable
93
+ ELEMENT.id = ELEMENT.id || STATE.id
94
+ if ( ELEMENT.type != 'text' ) {
95
+ ELEMENT.type = 'text'
96
+ }
97
+
98
+
99
+ // Create a new picker component with the settings.
100
+ P.component = new COMPONENT(P, SETTINGS)
101
+
102
+
103
+ // Create the picker root with a holder and then prepare it.
104
+ P.$root = $( PickerConstructor._.node('div', createWrappedComponent(), CLASSES.picker, 'id="' + ELEMENT.id + '_root" tabindex="0"') )
105
+ prepareElementRoot()
106
+
107
+
108
+ // If there’s a format for the hidden input element, create the element.
109
+ if ( SETTINGS.formatSubmit ) {
110
+ prepareElementHidden()
111
+ }
112
+
113
+
114
+ // Prepare the input element.
115
+ prepareElement()
116
+
117
+
118
+ // Insert the root as specified in the settings.
119
+ if ( SETTINGS.container ) $( SETTINGS.container ).append( P.$root )
120
+ else $ELEMENT.after( P.$root )
121
+
122
+
123
+ // Bind the default component and settings events.
124
+ P.on({
125
+ start: P.component.onStart,
126
+ render: P.component.onRender,
127
+ stop: P.component.onStop,
128
+ open: P.component.onOpen,
129
+ close: P.component.onClose,
130
+ set: P.component.onSet
131
+ }).on({
132
+ start: SETTINGS.onStart,
133
+ render: SETTINGS.onRender,
134
+ stop: SETTINGS.onStop,
135
+ open: SETTINGS.onOpen,
136
+ close: SETTINGS.onClose,
137
+ set: SETTINGS.onSet
138
+ })
139
+
140
+
141
+ // Once we’re all set, check the theme in use.
142
+ IS_DEFAULT_THEME = isUsingDefaultTheme( P.$root.children()[ 0 ] )
143
+
144
+
145
+ // If the element has autofocus, open the picker.
146
+ if ( ELEMENT.autofocus ) {
147
+ P.open()
148
+ }
149
+
150
+
151
+ // Trigger queued the “start” and “render” events.
152
+ return P.trigger( 'start' ).trigger( 'render' )
153
+ }, //start
154
+
155
+
156
+ /**
157
+ * Render a new picker
158
+ */
159
+ render: function( entireComponent ) {
160
+
161
+ // Insert a new component holder in the root or box.
162
+ if ( entireComponent ) P.$root.html( createWrappedComponent() )
163
+ else P.$root.find( '.' + CLASSES.box ).html( P.component.nodes( STATE.open ) )
164
+
165
+ // Trigger the queued “render” events.
166
+ return P.trigger( 'render' )
167
+ }, //render
168
+
169
+
170
+ /**
171
+ * Destroy everything
172
+ */
173
+ stop: function() {
174
+
175
+ // If it’s already stopped, do nothing.
176
+ if ( !STATE.start ) return P
177
+
178
+ // Then close the picker.
179
+ P.close()
180
+
181
+ // Remove the hidden field.
182
+ if ( P._hidden ) {
183
+ P._hidden.parentNode.removeChild( P._hidden )
184
+ }
185
+
186
+ // Remove the root.
187
+ P.$root.remove()
188
+
189
+ // Remove the input class, remove the stored data, and unbind
190
+ // the events (after a tick for IE - see `P.close`).
191
+ $ELEMENT.removeClass( CLASSES.input ).removeData( NAME )
192
+ setTimeout( function() {
193
+ $ELEMENT.off( '.' + STATE.id )
194
+ }, 0)
195
+
196
+ // Restore the element state
197
+ ELEMENT.type = STATE.type
198
+ ELEMENT.readOnly = false
199
+
200
+ // Trigger the queued “stop” events.
201
+ P.trigger( 'stop' )
202
+
203
+ // Reset the picker states.
204
+ STATE.methods = {}
205
+ STATE.start = false
206
+
207
+ return P
208
+ }, //stop
209
+
210
+
211
+ /**
212
+ * Open up the picker
213
+ */
214
+ open: function( dontGiveFocus ) {
215
+
216
+ // If it’s already open, do nothing.
217
+ if ( STATE.open ) return P
218
+
219
+ // Add the “active” class.
220
+ $ELEMENT.addClass( CLASSES.active )
221
+ aria( ELEMENT, 'expanded', true )
222
+
223
+ // * A Firefox bug, when `html` has `overflow:hidden`, results in
224
+ // killing transitions :(. So add the “opened” state on the next tick.
225
+ // Bug: https://bugzilla.mozilla.org/show_bug.cgi?id=625289
226
+ setTimeout( function() {
227
+
228
+ // Add the “opened” class to the picker root.
229
+ P.$root.addClass( CLASSES.opened )
230
+ aria( P.$root[0], 'hidden', false )
231
+
232
+ }, 0 )
233
+
234
+ // If we have to give focus, bind the element and doc events.
235
+ if ( dontGiveFocus !== false ) {
236
+
237
+ // Set it as open.
238
+ STATE.open = true
239
+
240
+ // Prevent the page from scrolling.
241
+ if ( IS_DEFAULT_THEME ) {
242
+ $html.
243
+ css( 'overflow', 'hidden' ).
244
+ css( 'padding-right', '+=' + getScrollbarWidth() )
245
+ }
246
+
247
+ // Pass focus to the root element’s jQuery object.
248
+ // * Workaround for iOS8 to bring the picker’s root into view.
249
+ P.$root.eq(0).focus()
250
+
251
+ // Bind the document events.
252
+ $document.on( 'click.' + STATE.id + ' focusin.' + STATE.id, function( event ) {
253
+
254
+ var target = event.target
255
+
256
+ // If the target of the event is not the element, close the picker picker.
257
+ // * Don’t worry about clicks or focusins on the root because those don’t bubble up.
258
+ // Also, for Firefox, a click on an `option` element bubbles up directly
259
+ // to the doc. So make sure the target wasn't the doc.
260
+ // * In Firefox stopPropagation() doesn’t prevent right-click events from bubbling,
261
+ // which causes the picker to unexpectedly close when right-clicking it. So make
262
+ // sure the event wasn’t a right-click.
263
+ if ( target != ELEMENT && target != document && event.which != 3 ) {
264
+
265
+ // If the target was the holder that covers the screen,
266
+ // keep the element focused to maintain tabindex.
267
+ P.close( target === P.$root.children()[0] )
268
+ }
269
+
270
+ }).on( 'keydown.' + STATE.id, function( event ) {
271
+
272
+ var
273
+ // Get the keycode.
274
+ keycode = event.keyCode,
275
+
276
+ // Translate that to a selection change.
277
+ keycodeToMove = P.component.key[ keycode ],
278
+
279
+ // Grab the target.
280
+ target = event.target
281
+
282
+
283
+ // On escape, close the picker and give focus.
284
+ if ( keycode == 27 ) {
285
+ P.close( true )
286
+ }
287
+
288
+
289
+ // Check if there is a key movement or “enter” keypress on the element.
290
+ else if ( target == P.$root[0] && ( keycodeToMove || keycode == 13 ) ) {
291
+
292
+ // Prevent the default action to stop page movement.
293
+ event.preventDefault()
294
+
295
+ // Trigger the key movement action.
296
+ if ( keycodeToMove ) {
297
+ PickerConstructor._.trigger( P.component.key.go, P, [ PickerConstructor._.trigger( keycodeToMove ) ] )
298
+ }
299
+
300
+ // On “enter”, if the highlighted item isn’t disabled, set the value and close.
301
+ else if ( !P.$root.find( '.' + CLASSES.highlighted ).hasClass( CLASSES.disabled ) ) {
302
+ P.set( 'select', P.component.item.highlight ).close()
303
+ }
304
+ }
305
+
306
+
307
+ // If the target is within the root and “enter” is pressed,
308
+ // prevent the default action and trigger a click on the target instead.
309
+ else if ( $.contains( P.$root[0], target ) && keycode == 13 ) {
310
+ event.preventDefault()
311
+ target.click()
312
+ }
313
+ })
314
+ }
315
+
316
+ // Trigger the queued “open” events.
317
+ return P.trigger( 'open' )
318
+ }, //open
319
+
320
+
321
+ /**
322
+ * Close the picker
323
+ */
324
+ close: function( giveFocus ) {
325
+
326
+ // If we need to give focus, do it before changing states.
327
+ if ( giveFocus ) {
328
+ // ....ah yes! It would’ve been incomplete without a crazy workaround for IE :|
329
+ // The focus is triggered *after* the close has completed - causing it
330
+ // to open again. So unbind and rebind the event at the next tick.
331
+ P.$root.off( 'focus.toOpen' ).eq(0).focus()
332
+ setTimeout( function() {
333
+ P.$root.on( 'focus.toOpen', handleFocusToOpenEvent )
334
+ }, 0 )
335
+ }
336
+
337
+ // Remove the “active” class.
338
+ $ELEMENT.removeClass( CLASSES.active )
339
+ aria( ELEMENT, 'expanded', false )
340
+
341
+ // * A Firefox bug, when `html` has `overflow:hidden`, results in
342
+ // killing transitions :(. So remove the “opened” state on the next tick.
343
+ // Bug: https://bugzilla.mozilla.org/show_bug.cgi?id=625289
344
+ setTimeout( function() {
345
+
346
+ // Remove the “opened” and “focused” class from the picker root.
347
+ P.$root.removeClass( CLASSES.opened + ' ' + CLASSES.focused )
348
+ aria( P.$root[0], 'hidden', true )
349
+
350
+ }, 0 )
351
+
352
+ // If it’s already closed, do nothing more.
353
+ if ( !STATE.open ) return P
354
+
355
+ // Set it as closed.
356
+ STATE.open = false
357
+
358
+ // Allow the page to scroll.
359
+ if ( IS_DEFAULT_THEME ) {
360
+ $html.
361
+ css( 'overflow', '' ).
362
+ css( 'padding-right', '-=' + getScrollbarWidth() )
363
+ }
364
+
365
+ // Unbind the document events.
366
+ $document.off( '.' + STATE.id )
367
+
368
+ // Trigger the queued “close” events.
369
+ return P.trigger( 'close' )
370
+ }, //close
371
+
372
+
373
+ /**
374
+ * Clear the values
375
+ */
376
+ clear: function( options ) {
377
+ return P.set( 'clear', null, options )
378
+ }, //clear
379
+
380
+
381
+ /**
382
+ * Set something
383
+ */
384
+ set: function( thing, value, options ) {
385
+
386
+ var thingItem, thingValue,
387
+ thingIsObject = $.isPlainObject( thing ),
388
+ thingObject = thingIsObject ? thing : {}
389
+
390
+ // Make sure we have usable options.
391
+ options = thingIsObject && $.isPlainObject( value ) ? value : options || {}
392
+
393
+ if ( thing ) {
394
+
395
+ // If the thing isn’t an object, make it one.
396
+ if ( !thingIsObject ) {
397
+ thingObject[ thing ] = value
398
+ }
399
+
400
+ // Go through the things of items to set.
401
+ for ( thingItem in thingObject ) {
402
+
403
+ // Grab the value of the thing.
404
+ thingValue = thingObject[ thingItem ]
405
+
406
+ // First, if the item exists and there’s a value, set it.
407
+ if ( thingItem in P.component.item ) {
408
+ if ( thingValue === undefined ) thingValue = null
409
+ P.component.set( thingItem, thingValue, options )
410
+ }
411
+
412
+ // Then, check to update the element value and broadcast a change.
413
+ if ( thingItem == 'select' || thingItem == 'clear' ) {
414
+ $ELEMENT.
415
+ val( thingItem == 'clear' ? '' : P.get( thingItem, SETTINGS.format ) ).
416
+ trigger( 'change' )
417
+ }
418
+ }
419
+
420
+ // Render a new picker.
421
+ P.render()
422
+ }
423
+
424
+ // When the method isn’t muted, trigger queued “set” events and pass the `thingObject`.
425
+ return options.muted ? P : P.trigger( 'set', thingObject )
426
+ }, //set
427
+
428
+
429
+ /**
430
+ * Get something
431
+ */
432
+ get: function( thing, format ) {
433
+
434
+ // Make sure there’s something to get.
435
+ thing = thing || 'value'
436
+
437
+ // If a picker state exists, return that.
438
+ if ( STATE[ thing ] != null ) {
439
+ return STATE[ thing ]
440
+ }
441
+
442
+ // Return the submission value, if that.
443
+ if ( thing == 'valueSubmit' ) {
444
+ if ( P._hidden ) {
445
+ return P._hidden.value
446
+ }
447
+ thing = 'value'
448
+ }
449
+
450
+ // Return the value, if that.
451
+ if ( thing == 'value' ) {
452
+ return ELEMENT.value
453
+ }
454
+
455
+ // Check if a component item exists, return that.
456
+ if ( thing in P.component.item ) {
457
+ if ( typeof format == 'string' ) {
458
+ var thingValue = P.component.get( thing )
459
+ return thingValue ?
460
+ PickerConstructor._.trigger(
461
+ P.component.formats.toString,
462
+ P.component,
463
+ [ format, thingValue ]
464
+ ) : ''
465
+ }
466
+ return P.component.get( thing )
467
+ }
468
+ }, //get
469
+
470
+
471
+
472
+ /**
473
+ * Bind events on the things.
474
+ */
475
+ on: function( thing, method, internal ) {
476
+
477
+ var thingName, thingMethod,
478
+ thingIsObject = $.isPlainObject( thing ),
479
+ thingObject = thingIsObject ? thing : {}
480
+
481
+ if ( thing ) {
482
+
483
+ // If the thing isn’t an object, make it one.
484
+ if ( !thingIsObject ) {
485
+ thingObject[ thing ] = method
486
+ }
487
+
488
+ // Go through the things to bind to.
489
+ for ( thingName in thingObject ) {
490
+
491
+ // Grab the method of the thing.
492
+ thingMethod = thingObject[ thingName ]
493
+
494
+ // If it was an internal binding, prefix it.
495
+ if ( internal ) {
496
+ thingName = '_' + thingName
497
+ }
498
+
499
+ // Make sure the thing methods collection exists.
500
+ STATE.methods[ thingName ] = STATE.methods[ thingName ] || []
501
+
502
+ // Add the method to the relative method collection.
503
+ STATE.methods[ thingName ].push( thingMethod )
504
+ }
505
+ }
506
+
507
+ return P
508
+ }, //on
509
+
510
+
511
+
512
+ /**
513
+ * Unbind events on the things.
514
+ */
515
+ off: function() {
516
+ var i, thingName,
517
+ names = arguments;
518
+ for ( i = 0, namesCount = names.length; i < namesCount; i += 1 ) {
519
+ thingName = names[i]
520
+ if ( thingName in STATE.methods ) {
521
+ delete STATE.methods[thingName]
522
+ }
523
+ }
524
+ return P
525
+ },
526
+
527
+
528
+ /**
529
+ * Fire off method events.
530
+ */
531
+ trigger: function( name, data ) {
532
+ var _trigger = function( name ) {
533
+ var methodList = STATE.methods[ name ]
534
+ if ( methodList ) {
535
+ methodList.map( function( method ) {
536
+ PickerConstructor._.trigger( method, P, [ data ] )
537
+ })
538
+ }
539
+ }
540
+ _trigger( '_' + name )
541
+ _trigger( name )
542
+ return P
543
+ } //trigger
544
+ } //PickerInstance.prototype
545
+
546
+
547
+ /**
548
+ * Wrap the picker holder components together.
549
+ */
550
+ function createWrappedComponent() {
551
+
552
+ // Create a picker wrapper holder
553
+ return PickerConstructor._.node( 'div',
554
+
555
+ // Create a picker wrapper node
556
+ PickerConstructor._.node( 'div',
557
+
558
+ // Create a picker frame
559
+ PickerConstructor._.node( 'div',
560
+
561
+ // Create a picker box node
562
+ PickerConstructor._.node( 'div',
563
+
564
+ // Create the components nodes.
565
+ P.component.nodes( STATE.open ),
566
+
567
+ // The picker box class
568
+ CLASSES.box
569
+ ),
570
+
571
+ // Picker wrap class
572
+ CLASSES.wrap
573
+ ),
574
+
575
+ // Picker frame class
576
+ CLASSES.frame
577
+ ),
578
+
579
+ // Picker holder class
580
+ CLASSES.holder
581
+ ) //endreturn
582
+ } //createWrappedComponent
583
+
584
+
585
+
586
+ /**
587
+ * Prepare the input element with all bindings.
588
+ */
589
+ function prepareElement() {
590
+
591
+ $ELEMENT.
592
+
593
+ // Store the picker data by component name.
594
+ data(NAME, P).
595
+
596
+ // Add the “input” class name.
597
+ addClass(CLASSES.input).
598
+
599
+ // Remove the tabindex.
600
+ attr('tabindex', -1).
601
+
602
+ // If there’s a `data-value`, update the value of the element.
603
+ val( $ELEMENT.data('value') ?
604
+ P.get('select', SETTINGS.format) :
605
+ ELEMENT.value
606
+ )
607
+
608
+
609
+ // Only bind keydown events if the element isn’t editable.
610
+ if ( !SETTINGS.editable ) {
611
+
612
+ $ELEMENT.
613
+
614
+ // On focus/click, focus onto the root to open it up.
615
+ on( 'focus.' + STATE.id + ' click.' + STATE.id, function( event ) {
616
+ event.preventDefault()
617
+ P.$root.eq(0).focus()
618
+ }).
619
+
620
+ // Handle keyboard event based on the picker being opened or not.
621
+ on( 'keydown.' + STATE.id, handleKeydownEvent )
622
+ }
623
+
624
+
625
+ // Update the aria attributes.
626
+ aria(ELEMENT, {
627
+ haspopup: true,
628
+ expanded: false,
629
+ readonly: false,
630
+ owns: ELEMENT.id + '_root'
631
+ })
632
+ }
633
+
634
+
635
+ /**
636
+ * Prepare the root picker element with all bindings.
637
+ */
638
+ function prepareElementRoot() {
639
+
640
+ P.$root.
641
+
642
+ on({
643
+
644
+ // For iOS8.
645
+ keydown: handleKeydownEvent,
646
+
647
+ // When something within the root is focused, stop from bubbling
648
+ // to the doc and remove the “focused” state from the root.
649
+ focusin: function( event ) {
650
+ P.$root.removeClass( CLASSES.focused )
651
+ event.stopPropagation()
652
+ },
653
+
654
+ // When something within the root holder is clicked, stop it
655
+ // from bubbling to the doc.
656
+ 'mousedown click': function( event ) {
657
+
658
+ var target = event.target
659
+
660
+ // Make sure the target isn’t the root holder so it can bubble up.
661
+ if ( target != P.$root.children()[ 0 ] ) {
662
+
663
+ event.stopPropagation()
664
+
665
+ // * For mousedown events, cancel the default action in order to
666
+ // prevent cases where focus is shifted onto external elements
667
+ // when using things like jQuery mobile or MagnificPopup (ref: #249 & #120).
668
+ // Also, for Firefox, don’t prevent action on the `option` element.
669
+ if ( event.type == 'mousedown' && !$( target ).is( 'input, select, textarea, button, option' )) {
670
+
671
+ event.preventDefault()
672
+
673
+ // Re-focus onto the root so that users can click away
674
+ // from elements focused within the picker.
675
+ P.$root.eq(0).focus()
676
+ }
677
+ }
678
+ }
679
+ }).
680
+
681
+ // Add/remove the “target” class on focus and blur.
682
+ on({
683
+ focus: function() {
684
+ $ELEMENT.addClass( CLASSES.target )
685
+ },
686
+ blur: function() {
687
+ $ELEMENT.removeClass( CLASSES.target )
688
+ }
689
+ }).
690
+
691
+ // Open the picker and adjust the root “focused” state
692
+ on( 'focus.toOpen', handleFocusToOpenEvent ).
693
+
694
+ // If there’s a click on an actionable element, carry out the actions.
695
+ on( 'click', '[data-pick], [data-nav], [data-clear], [data-close]', function() {
696
+
697
+ var $target = $( this ),
698
+ targetData = $target.data(),
699
+ targetDisabled = $target.hasClass( CLASSES.navDisabled ) || $target.hasClass( CLASSES.disabled ),
700
+
701
+ // * For IE, non-focusable elements can be active elements as well
702
+ // (http://stackoverflow.com/a/2684561).
703
+ activeElement = getActiveElement()
704
+ activeElement = activeElement && ( activeElement.type || activeElement.href )
705
+
706
+ // If it’s disabled or nothing inside is actively focused, re-focus the element.
707
+ if ( targetDisabled || activeElement && !$.contains( P.$root[0], activeElement ) ) {
708
+ P.$root.eq(0).focus()
709
+ }
710
+
711
+ // If something is superficially changed, update the `highlight` based on the `nav`.
712
+ if ( !targetDisabled && targetData.nav ) {
713
+ P.set( 'highlight', P.component.item.highlight, { nav: targetData.nav } )
714
+ }
715
+
716
+ // If something is picked, set `select` then close with focus.
717
+ else if ( !targetDisabled && 'pick' in targetData ) {
718
+ P.set( 'select', targetData.pick )
719
+ }
720
+
721
+ // If a “clear” button is pressed, empty the values and close with focus.
722
+ else if ( targetData.clear ) {
723
+ P.clear().close( true )
724
+ }
725
+
726
+ else if ( targetData.close ) {
727
+ P.close( true )
728
+ }
729
+
730
+ }) //P.$root
731
+
732
+ aria( P.$root[0], 'hidden', true )
733
+ }
734
+
735
+
736
+ /**
737
+ * Prepare the hidden input element along with all bindings.
738
+ */
739
+ function prepareElementHidden() {
740
+
741
+ var name
742
+
743
+ if ( SETTINGS.hiddenName === true ) {
744
+ name = ELEMENT.name
745
+ ELEMENT.name = ''
746
+ }
747
+ else {
748
+ name = [
749
+ typeof SETTINGS.hiddenPrefix == 'string' ? SETTINGS.hiddenPrefix : '',
750
+ typeof SETTINGS.hiddenSuffix == 'string' ? SETTINGS.hiddenSuffix : '_submit'
751
+ ]
752
+ name = name[0] + ELEMENT.name + name[1]
753
+ }
754
+
755
+ P._hidden = $(
756
+ '<input ' +
757
+ 'type=hidden ' +
758
+
759
+ // Create the name using the original input’s with a prefix and suffix.
760
+ 'name="' + name + '"' +
761
+
762
+ // If the element has a value, set the hidden value as well.
763
+ (
764
+ $ELEMENT.data('value') || ELEMENT.value ?
765
+ ' value="' + P.get('select', SETTINGS.formatSubmit) + '"' :
766
+ ''
767
+ ) +
768
+ '>'
769
+ )[0]
770
+
771
+ $ELEMENT.
772
+
773
+ // If the value changes, update the hidden input with the correct format.
774
+ on('change.' + STATE.id, function() {
775
+ P._hidden.value = ELEMENT.value ?
776
+ P.get('select', SETTINGS.formatSubmit) :
777
+ ''
778
+ })
779
+
780
+
781
+ // Insert the hidden input as specified in the settings.
782
+ if ( SETTINGS.container ) $( SETTINGS.container ).append( P._hidden )
783
+ else $ELEMENT.after( P._hidden )
784
+ }
785
+
786
+
787
+ // For iOS8.
788
+ function handleKeydownEvent( event ) {
789
+
790
+ var keycode = event.keyCode,
791
+
792
+ // Check if one of the delete keys was pressed.
793
+ isKeycodeDelete = /^(8|46)$/.test(keycode)
794
+
795
+ // For some reason IE clears the input value on “escape”.
796
+ if ( keycode == 27 ) {
797
+ P.close()
798
+ return false
799
+ }
800
+
801
+ // Check if `space` or `delete` was pressed or the picker is closed with a key movement.
802
+ if ( keycode == 32 || isKeycodeDelete || !STATE.open && P.component.key[keycode] ) {
803
+
804
+ // Prevent it from moving the page and bubbling to doc.
805
+ event.preventDefault()
806
+ event.stopPropagation()
807
+
808
+ // If `delete` was pressed, clear the values and close the picker.
809
+ // Otherwise open the picker.
810
+ if ( isKeycodeDelete ) { P.clear().close() }
811
+ else { P.open() }
812
+ }
813
+ }
814
+
815
+
816
+ // Separated for IE
817
+ function handleFocusToOpenEvent( event ) {
818
+
819
+ // Stop the event from propagating to the doc.
820
+ event.stopPropagation()
821
+
822
+ // If it’s a focus event, add the “focused” class to the root.
823
+ if ( event.type == 'focus' ) {
824
+ P.$root.addClass( CLASSES.focused )
825
+ }
826
+
827
+ // And then finally open the picker.
828
+ P.open()
829
+ }
830
+
831
+
832
+ // Return a new picker instance.
833
+ return new PickerInstance()
834
+ } //PickerConstructor
835
+
836
+
837
+
838
+ /**
839
+ * The default classes and prefix to use for the HTML classes.
840
+ */
841
+ PickerConstructor.klasses = function( prefix ) {
842
+ prefix = prefix || 'picker'
843
+ return {
844
+
845
+ picker: prefix,
846
+ opened: prefix + '--opened',
847
+ focused: prefix + '--focused',
848
+
849
+ input: prefix + '__input',
850
+ active: prefix + '__input--active',
851
+ target: prefix + '__input--target',
852
+
853
+ holder: prefix + '__holder',
854
+
855
+ frame: prefix + '__frame',
856
+ wrap: prefix + '__wrap',
857
+
858
+ box: prefix + '__box'
859
+ }
860
+ } //PickerConstructor.klasses
861
+
862
+
863
+
864
+ /**
865
+ * Check if the default theme is being used.
866
+ */
867
+ function isUsingDefaultTheme( element ) {
868
+
869
+ var theme,
870
+ prop = 'position'
871
+
872
+ // For IE.
873
+ if ( element.currentStyle ) {
874
+ theme = element.currentStyle[prop]
875
+ }
876
+
877
+ // For normal browsers.
878
+ else if ( window.getComputedStyle ) {
879
+ theme = getComputedStyle( element )[prop]
880
+ }
881
+
882
+ return theme == 'fixed'
883
+ }
884
+
885
+
886
+
887
+ /**
888
+ * Get the width of the browser’s scrollbar.
889
+ * Taken from: https://github.com/VodkaBears/Remodal/blob/master/src/jquery.remodal.js
890
+ */
891
+ function getScrollbarWidth() {
892
+
893
+ if ( $html.height() <= $window.height() ) {
894
+ return 0
895
+ }
896
+
897
+ var $outer = $( '<div style="visibility:hidden;width:100px" />' ).
898
+ appendTo( 'body' )
899
+
900
+ // Get the width without scrollbars.
901
+ var widthWithoutScroll = $outer[0].offsetWidth
902
+
903
+ // Force adding scrollbars.
904
+ $outer.css( 'overflow', 'scroll' )
905
+
906
+ // Add the inner div.
907
+ var $inner = $( '<div style="width:100%" />' ).appendTo( $outer )
908
+
909
+ // Get the width with scrollbars.
910
+ var widthWithScroll = $inner[0].offsetWidth
911
+
912
+ // Remove the divs.
913
+ $outer.remove()
914
+
915
+ // Return the difference between the widths.
916
+ return widthWithoutScroll - widthWithScroll
917
+ }
918
+
919
+
920
+
921
+ /**
922
+ * PickerConstructor helper methods.
923
+ */
924
+ PickerConstructor._ = {
925
+
926
+ /**
927
+ * Create a group of nodes. Expects:
928
+ * `
929
+ {
930
+ min: {Integer},
931
+ max: {Integer},
932
+ i: {Integer},
933
+ node: {String},
934
+ item: {Function}
935
+ }
936
+ * `
937
+ */
938
+ group: function( groupObject ) {
939
+
940
+ var
941
+ // Scope for the looped object
942
+ loopObjectScope,
943
+
944
+ // Create the nodes list
945
+ nodesList = '',
946
+
947
+ // The counter starts from the `min`
948
+ counter = PickerConstructor._.trigger( groupObject.min, groupObject )
949
+
950
+
951
+ // Loop from the `min` to `max`, incrementing by `i`
952
+ for ( ; counter <= PickerConstructor._.trigger( groupObject.max, groupObject, [ counter ] ); counter += groupObject.i ) {
953
+
954
+ // Trigger the `item` function within scope of the object
955
+ loopObjectScope = PickerConstructor._.trigger( groupObject.item, groupObject, [ counter ] )
956
+
957
+ // Splice the subgroup and create nodes out of the sub nodes
958
+ nodesList += PickerConstructor._.node(
959
+ groupObject.node,
960
+ loopObjectScope[ 0 ], // the node
961
+ loopObjectScope[ 1 ], // the classes
962
+ loopObjectScope[ 2 ] // the attributes
963
+ )
964
+ }
965
+
966
+ // Return the list of nodes
967
+ return nodesList
968
+ }, //group
969
+
970
+
971
+ /**
972
+ * Create a dom node string
973
+ */
974
+ node: function( wrapper, item, klass, attribute ) {
975
+
976
+ // If the item is false-y, just return an empty string
977
+ if ( !item ) return ''
978
+
979
+ // If the item is an array, do a join
980
+ item = $.isArray( item ) ? item.join( '' ) : item
981
+
982
+ // Check for the class
983
+ klass = klass ? ' class="' + klass + '"' : ''
984
+
985
+ // Check for any attributes
986
+ attribute = attribute ? ' ' + attribute : ''
987
+
988
+ // Return the wrapped item
989
+ return '<' + wrapper + klass + attribute + '>' + item + '</' + wrapper + '>'
990
+ }, //node
991
+
992
+
993
+ /**
994
+ * Lead numbers below 10 with a zero.
995
+ */
996
+ lead: function( number ) {
997
+ return ( number < 10 ? '0': '' ) + number
998
+ },
999
+
1000
+
1001
+ /**
1002
+ * Trigger a function otherwise return the value.
1003
+ */
1004
+ trigger: function( callback, scope, args ) {
1005
+ return typeof callback == 'function' ? callback.apply( scope, args || [] ) : callback
1006
+ },
1007
+
1008
+
1009
+ /**
1010
+ * If the second character is a digit, length is 2 otherwise 1.
1011
+ */
1012
+ digits: function( string ) {
1013
+ return ( /\d/ ).test( string[ 1 ] ) ? 2 : 1
1014
+ },
1015
+
1016
+
1017
+ /**
1018
+ * Tell if something is a date object.
1019
+ */
1020
+ isDate: function( value ) {
1021
+ return {}.toString.call( value ).indexOf( 'Date' ) > -1 && this.isInteger( value.getDate() )
1022
+ },
1023
+
1024
+
1025
+ /**
1026
+ * Tell if something is an integer.
1027
+ */
1028
+ isInteger: function( value ) {
1029
+ return {}.toString.call( value ).indexOf( 'Number' ) > -1 && value % 1 === 0
1030
+ },
1031
+
1032
+
1033
+ /**
1034
+ * Create ARIA attribute strings.
1035
+ */
1036
+ ariaAttr: ariaAttr
1037
+ } //PickerConstructor._
1038
+
1039
+
1040
+
1041
+ /**
1042
+ * Extend the picker with a component and defaults.
1043
+ */
1044
+ PickerConstructor.extend = function( name, Component ) {
1045
+
1046
+ // Extend jQuery.
1047
+ $.fn[ name ] = function( options, action ) {
1048
+
1049
+ // Grab the component data.
1050
+ var componentData = this.data( name )
1051
+
1052
+ // If the picker is requested, return the data object.
1053
+ if ( options == 'picker' ) {
1054
+ return componentData
1055
+ }
1056
+
1057
+ // If the component data exists and `options` is a string, carry out the action.
1058
+ if ( componentData && typeof options == 'string' ) {
1059
+ return PickerConstructor._.trigger( componentData[ options ], componentData, [ action ] )
1060
+ }
1061
+
1062
+ // Otherwise go through each matched element and if the component
1063
+ // doesn’t exist, create a new picker using `this` element
1064
+ // and merging the defaults and options with a deep copy.
1065
+ return this.each( function() {
1066
+ var $this = $( this )
1067
+ if ( !$this.data( name ) ) {
1068
+ new PickerConstructor( this, name, Component, options )
1069
+ }
1070
+ })
1071
+ }
1072
+
1073
+ // Set the defaults.
1074
+ $.fn[ name ].defaults = Component.defaults
1075
+ } //PickerConstructor.extend
1076
+
1077
+
1078
+
1079
+ function aria(element, attribute, value) {
1080
+ if ( $.isPlainObject(attribute) ) {
1081
+ for ( var key in attribute ) {
1082
+ ariaSet(element, key, attribute[key])
1083
+ }
1084
+ }
1085
+ else {
1086
+ ariaSet(element, attribute, value)
1087
+ }
1088
+ }
1089
+ function ariaSet(element, attribute, value) {
1090
+ element.setAttribute(
1091
+ (attribute == 'role' ? '' : 'aria-') + attribute,
1092
+ value
1093
+ )
1094
+ }
1095
+ function ariaAttr(attribute, data) {
1096
+ if ( !$.isPlainObject(attribute) ) {
1097
+ attribute = { attribute: data }
1098
+ }
1099
+ data = ''
1100
+ for ( var key in attribute ) {
1101
+ var attr = (key == 'role' ? '' : 'aria-') + key,
1102
+ attrVal = attribute[key]
1103
+ data += attrVal == null ? '' : attr + '="' + attribute[key] + '"'
1104
+ }
1105
+ return data
1106
+ }
1107
+
1108
+ // IE8 bug throws an error for activeElements within iframes.
1109
+ function getActiveElement() {
1110
+ try {
1111
+ return document.activeElement
1112
+ } catch ( err ) { }
1113
+ }
1114
+
1115
+
1116
+
1117
+ // Expose the picker constructor.
1118
+ return PickerConstructor
1119
+
1120
+
1121
+ }));
1122
+