proclaim 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG +6 -0
- data/Gemfile +14 -0
- data/LICENSE +674 -0
- data/README.md +137 -0
- data/Rakefile +65 -0
- data/VERSION +1 -0
- data/app/assets/images/ajax_loader.gif +0 -0
- data/app/assets/javascripts/proclaim.js +18 -0
- data/app/assets/javascripts/proclaim/comments_handler.js.coffee +192 -0
- data/app/assets/javascripts/proclaim/editor.js.coffee +50 -0
- data/app/assets/javascripts/proclaim/images.js.coffee +3 -0
- data/app/assets/javascripts/proclaim/subscriptions.js.coffee +3 -0
- data/app/assets/stylesheets/proclaim.css.scss +28 -0
- data/app/assets/stylesheets/proclaim/comments.css.scss +14 -0
- data/app/assets/stylesheets/proclaim/images.scss +3 -0
- data/app/assets/stylesheets/proclaim/posts.css.scss +77 -0
- data/app/assets/stylesheets/proclaim/subscriptions.css.scss +3 -0
- data/app/controllers/proclaim/application_controller.rb +44 -0
- data/app/controllers/proclaim/comments_controller.rb +128 -0
- data/app/controllers/proclaim/images_controller.rb +108 -0
- data/app/controllers/proclaim/posts_controller.rb +131 -0
- data/app/controllers/proclaim/subscriptions_controller.rb +67 -0
- data/app/helpers/proclaim/application_helper.rb +34 -0
- data/app/helpers/proclaim/comments_helper.rb +4 -0
- data/app/helpers/proclaim/images_helper.rb +4 -0
- data/app/helpers/proclaim/posts_helper.rb +4 -0
- data/app/helpers/proclaim/subscriptions_helper.rb +4 -0
- data/app/mailers/proclaim/subscription_mailer.rb +43 -0
- data/app/models/proclaim/comment.rb +35 -0
- data/app/models/proclaim/image.rb +19 -0
- data/app/models/proclaim/post.rb +133 -0
- data/app/models/proclaim/subscription.rb +63 -0
- data/app/policies/application_policy.rb +53 -0
- data/app/policies/proclaim/comment_policy.rb +27 -0
- data/app/policies/proclaim/image_policy.rb +29 -0
- data/app/policies/proclaim/post_policy.rb +38 -0
- data/app/policies/proclaim/subscription_policy.rb +32 -0
- data/app/uploaders/proclaim/image_uploader.rb +82 -0
- data/app/views/layouts/proclaim/subscription_mailer.html.erb +133 -0
- data/app/views/proclaim/comments/_comment.html.erb +33 -0
- data/app/views/proclaim/comments/_form.html.erb +51 -0
- data/app/views/proclaim/posts/_form.html.erb +67 -0
- data/app/views/proclaim/posts/edit.html.erb +3 -0
- data/app/views/proclaim/posts/index.html.erb +30 -0
- data/app/views/proclaim/posts/new.html.erb +3 -0
- data/app/views/proclaim/posts/show.html.erb +46 -0
- data/app/views/proclaim/subscription_mailer/new_comment_notification_email.html.erb +11 -0
- data/app/views/proclaim/subscription_mailer/new_post_notification_email.html.erb +15 -0
- data/app/views/proclaim/subscription_mailer/welcome_email.html.erb +25 -0
- data/app/views/proclaim/subscriptions/_form.html.erb +32 -0
- data/app/views/proclaim/subscriptions/new.html.erb +8 -0
- data/app/views/proclaim/subscriptions/subscribed.html.erb +7 -0
- data/app/views/proclaim/subscriptions/unsubscribe.html.erb +7 -0
- data/app/views/proclaim/subscriptions/unsubscribed.html.erb +3 -0
- data/config/routes.rb +18 -0
- data/db/migrate/20141108222616_create_proclaim_posts.rb +15 -0
- data/db/migrate/20141114235359_create_proclaim_comments.rb +15 -0
- data/db/migrate/20141115022230_create_proclaim_comment_hierarchies.rb +26 -0
- data/db/migrate/20141210234057_create_proclaim_subscriptions.rb +17 -0
- data/db/migrate/20141222224905_create_proclaim_images.rb +12 -0
- data/lib/generators/proclaim/install_generator.rb +23 -0
- data/lib/generators/proclaim/templates/README +27 -0
- data/lib/generators/proclaim/templates/initialize_proclaim.rb +22 -0
- data/lib/generators/proclaim/views_generator.rb +24 -0
- data/lib/proclaim.rb +22 -0
- data/lib/proclaim/engine.rb +39 -0
- data/lib/proclaim/version.rb +3 -0
- data/lib/tasks/proclaim_tasks.rake +4 -0
- data/proclaim.gemspec +46 -0
- data/test/controllers/proclaim/comments_controller_test.rb +228 -0
- data/test/controllers/proclaim/images_controller_test.rb +123 -0
- data/test/controllers/proclaim/posts_controller_test.rb +303 -0
- data/test/controllers/proclaim/subscriptions_controller_test.rb +93 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +14 -0
- data/test/dummy/app/assets/stylesheets/application.css +16 -0
- data/test/dummy/app/controllers/application_controller.rb +15 -0
- data/test/dummy/app/helpers/application_helper.rb +28 -0
- data/test/dummy/app/models/user.rb +7 -0
- data/test/dummy/app/views/layouts/application.html.erb +16 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +24 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +45 -0
- data/test/dummy/config/environments/production.rb +80 -0
- data/test/dummy/config/environments/test.rb +49 -0
- data/test/dummy/config/initializers/assets.rb +8 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +5 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/db/migrate/20141117214323_create_users.rb +10 -0
- data/test/dummy/db/schema.rb +75 -0
- data/test/dummy/log/development.log +131 -0
- data/test/dummy/log/test.log +25961 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/0b69f7cc441d56def3a51688e6a7a8474dc476d1/proclaim.css.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/12a97df611d5fb0e395afda829edf8b9372acde7/comments.css.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/12a97df611d5fb0e395afda829edf8b9372acde7/images.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/12a97df611d5fb0e395afda829edf8b9372acde7/posts.css.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/12a97df611d5fb0e395afda829edf8b9372acde7/subscriptions.css.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/04adcece63bc645379e6de797e7998f8 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/06620fc450f0a9b4a482a7bc08387711 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/076dd0d567a92c34163b3b98af1d48ba +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/09fc2eadf6d6062b2cc135a44e4e73db +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/09fe8c62e8ae706e01058b4b4d056c8e +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/142fd040033525acb73ad2ccf1406aea +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/1762aeeaf38da3b8d989a5b66b088004 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/194ac1a695334e303516614579b3926d +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/197ea008934db3e7ea8045302d206b92 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/19eba2635fec0895379c3e38f81ada84 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/1c2ebe72fcd7ff1379a561552ca30f85 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/1f42c80faacb651f670ec2b0998e49dc +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/2243230e778a749ecbf0415a52e75be0 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/23ad87e715c70312aa61dde4fbb4bfe1 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/245b8735db4ea90bcaa91c011a1f447e +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/26a42dac0cec64483f4126d2de4b0c9e +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/30151c8f6d93717f06fa12774612ddf4 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/3c623d200214a5334aaf170537db087f +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/3ec36650a50759fd4b75794cb253936f +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/40431cdcc10c75ba1f275ecfe42623d3 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/4226218a4b06608115b21063353370ea +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/437901953eb8707af6c27ca59cf65d91 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/461885b8ad31ef6a94c9a4f2e332b7eb +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/4792f46317cda92ccd5b278ec61f9ac5 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/4dcb3434b91b1c62f897a1741c6d398b +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/5101cda93cf70f0fc0837713be587780 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/52d8c61de0703e0d7cf97d0f7b0cca7a +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/57f3d19a9bd484ac68c46f962a8684b2 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/587e7c1332c8d8b69746dd85164e2cef +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/5934d5d0d1ac6657842708e85c73cf51 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/5af081799d7da2f04ead6a516c6015ad +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/69ee5af8d9a655898a67bc538ca1c7e7 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/6d1c56259648b0383bc438c875a448c3 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/6e7de35055967df848aa490830043e51 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/70bc59560ee544af7bb2f727247db307 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/728cb566999910549092ff0a98e2853b +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/72b5f0d35e9d69b744a156edad98f983 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/72ffa34d552e3fd02f28a6f845a5ac5b +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/7369d324e84bc872c42b3e717ff4ad6c +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/749a8b0e45b11df748a256dd04ceb1f7 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/77fb9f62552d9b786f9407ef11cc9a09 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/797823842565e01fc989ad8df0bd4254 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/7c139afa2296ac17483520109aecd449 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/7fb99e2b35af65c4f58bfb92dd4185b4 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/819de31c63b704f9ddf4865587a91d41 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/8604b464bf846e5223da37ef2f29b524 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/88fc815613b473e98e9307b1d423918d +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/8bc4341aa4060b8646e8134722cf3b11 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/8cf8fd5ff8eae12211a88f971af30236 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/8da3b4a9f17aafff49eb263bdb758f44 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/9168e513bae02f041dbb806d6dbe94ac +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/920c1322be1212a54b7c4f2751d5e7bf +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/92205679a36afd387a2ba5c585a5a62c +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/940566ebcae2d4e5c56a881ab66f2cf0 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/976967e07e2944a7ecc7403667f1f96b +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/99bdde70cefa71745279232be575f14e +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/9a8e402a7e32063e46647403b43553a5 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/9b09ad72f8cc33503878b01c713d92d0 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/a20dbdfebf37fe50e832a6273c972553 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/a3c6189fad6cb9ae955f6d5a43a61d51 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/abb54e11ff057a3e22a5a97d27cc4fa3 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/ad18e3875541d4298b1df133d494b93f +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/b9b7c575c22943d49734d52381c5ee16 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/ba269a52f100d3d6cffda81e82e1ed49 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/bc7a0846b4881b0832d41de2b1724dba +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/bcb2df87f9611d3cc3ef8a5575e54fb8 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/bcf33791d3286af3ba2cdf6a6756c89e +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/be32d0a530ce861537d6abfa41333df9 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/c8270a6f07dccc5f00e6b2b43f10efd2 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/cd82cd410a50bffcfb6e21e3c49a85c9 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/ce4ccaa06bdee6426486224bc7e54187 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d0bdb8592e4eed80aa2341e37f20dbc9 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d4b784b16fa1b1dfcca6590689a8c157 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d968bd38a69bbf5c0065e2df3d30cfd3 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/daa4d4b8a5ce46d6c4ecf031e0c61cfe +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/dc2effd195334219a7e4acfdc7ec7974 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/de36ab6c3b1a9b62a586d98373dd569c +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/e3aec457d5c753090d6521f2bb2d91b6 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/e8d6158b1fed2f574242b55856a3953d +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/ea82f6aececcf81eef3e2e15a9225e66 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/ed9f5c17f71ec75de10b1bb029ebd7a2 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f2984adaeaa5322e3a040705c6d40622 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f62fd0cf9f5e7e077ec9c4daeccb06ae +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f78ea69bdbba5738c052e9eb04e6c208 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f864e553f706456dbdf168319970ec2e +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/fb0f641bfcbb0101c040da9ff736447b +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/fe426a44cf23cf82032091cbffff898c +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/ff732ea47a86c449582b2a81ef2930da +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/ffc4980851addaacf12abeebfa63e07f +0 -0
- data/test/dummy/tmp/generators/config/initializers/proclaim.rb +22 -0
- data/test/factories/proclaim/comment.rb +11 -0
- data/test/factories/proclaim/image.rb +6 -0
- data/test/factories/proclaim/post.rb +14 -0
- data/test/factories/proclaim/subscription.rb +13 -0
- data/test/factories/user.rb +6 -0
- data/test/helpers/proclaim/comments_helper_test.rb +6 -0
- data/test/helpers/proclaim/posts_helper_test.rb +6 -0
- data/test/helpers/proclaim/subscriptions_helper_test.rb +6 -0
- data/test/integration/with_javascript/comment_test.rb +353 -0
- data/test/integration/with_javascript/post_form_test.rb +179 -0
- data/test/integration/with_javascript/post_subscription_test.rb +273 -0
- data/test/integration/without_javascript/blog_subscription_test.rb +87 -0
- data/test/integration/without_javascript/post_test.rb +140 -0
- data/test/integration/without_javascript/subscription_email_test.rb +95 -0
- data/test/integration/without_javascript/unsubscribe_test.rb +32 -0
- data/test/mailers/previews/proclaim/subscription_mailer_preview.rb +22 -0
- data/test/mailers/proclaim/subscription_mailer_test.rb +87 -0
- data/test/models/proclaim/comment_test.rb +41 -0
- data/test/models/proclaim/image_test.rb +70 -0
- data/test/models/proclaim/post_test.rb +127 -0
- data/test/models/proclaim/subscription_test.rb +66 -0
- data/test/policies/proclaim/comment_policy_test.rb +71 -0
- data/test/policies/proclaim/post_policy_test.rb +87 -0
- data/test/policies/proclaim/subscription_policy_test.rb +91 -0
- data/test/proclaim_test.rb +7 -0
- data/test/support/images/test.jpg +0 -0
- data/test/support/pages/posts/edit_page.rb +5 -0
- data/test/support/pages/posts/show_page.rb +47 -0
- data/test/support/wait_for_ajax.rb +11 -0
- data/test/test_helper.rb +56 -0
- data/vendor/assets/images/link.png +0 -0
- data/vendor/assets/images/remove.png +0 -0
- data/vendor/assets/images/resize-bigger.png +0 -0
- data/vendor/assets/images/resize-smaller.png +0 -0
- data/vendor/assets/images/unlink.png +0 -0
- data/vendor/assets/javascripts/addons/medium-editor-insert-embeds.js +197 -0
- data/vendor/assets/javascripts/addons/medium-editor-insert-embeds.min.js +10 -0
- data/vendor/assets/javascripts/addons/medium-editor-insert-images.js +572 -0
- data/vendor/assets/javascripts/addons/medium-editor-insert-images.min.js +10 -0
- data/vendor/assets/javascripts/addons/medium-editor-insert-maps.js +50 -0
- data/vendor/assets/javascripts/addons/medium-editor-insert-maps.min.js +10 -0
- data/vendor/assets/javascripts/addons/medium-editor-insert-plugin.js +496 -0
- data/vendor/assets/javascripts/addons/medium-editor-insert-plugin.min.js +10 -0
- data/vendor/assets/javascripts/addons/medium-editor-insert-tables.js +132 -0
- data/vendor/assets/javascripts/addons/medium-editor-insert-tables.min.js +10 -0
- data/vendor/assets/javascripts/medium-editor-insert-plugin.all.js +1415 -0
- data/vendor/assets/javascripts/medium-editor-insert-plugin.all.min.js +10 -0
- data/vendor/assets/stylesheets/medium-editor-insert-plugin-frontend.css +55 -0
- data/vendor/assets/stylesheets/medium-editor-insert-plugin-frontend.min.css +10 -0
- data/vendor/assets/stylesheets/medium-editor-insert-plugin.css +277 -0
- data/vendor/assets/stylesheets/medium-editor-insert-plugin.min.css +10 -0
- metadata +791 -0
@@ -0,0 +1,572 @@
|
|
1
|
+
/*!
|
2
|
+
* medium-editor-insert-plugin v0.3.2 - jQuery insert plugin for MediumEditor
|
3
|
+
*
|
4
|
+
* https://github.com/orthes/medium-editor-insert-plugin
|
5
|
+
*
|
6
|
+
* Copyright (c) 2014 Pavel Linkesch (http://linkesch.sk)
|
7
|
+
* Released under the MIT license
|
8
|
+
*/
|
9
|
+
|
10
|
+
(function ($) {
|
11
|
+
|
12
|
+
$.fn.mediumInsert.registerAddon('images', {
|
13
|
+
|
14
|
+
/**
|
15
|
+
* Images default options
|
16
|
+
*/
|
17
|
+
|
18
|
+
defaults: {
|
19
|
+
/**
|
20
|
+
* Active or inactive image's drag and drop
|
21
|
+
*/
|
22
|
+
useDragAndDrop: true,
|
23
|
+
|
24
|
+
/**
|
25
|
+
* Relative path to a script that handles file uploads
|
26
|
+
*/
|
27
|
+
imagesUploadScript: 'upload.php',
|
28
|
+
|
29
|
+
/**
|
30
|
+
* Relative path to a script that handles file deleting
|
31
|
+
*/
|
32
|
+
imagesDeleteScript: 'delete.php',
|
33
|
+
|
34
|
+
/**
|
35
|
+
* Placeeholder text for inserting link
|
36
|
+
*/
|
37
|
+
urlPlaceholder: 'Paste or type a link',
|
38
|
+
|
39
|
+
/**
|
40
|
+
* Format data before sending them to server while uploading an image
|
41
|
+
*
|
42
|
+
* @param {File} file File to upload
|
43
|
+
* @return {object} formData FormData instance
|
44
|
+
*/
|
45
|
+
formatData: function (file) {
|
46
|
+
var formData = new FormData();
|
47
|
+
formData.append('file', file);
|
48
|
+
return formData;
|
49
|
+
},
|
50
|
+
|
51
|
+
/**
|
52
|
+
* Upload single file
|
53
|
+
*
|
54
|
+
* @param {element} $placeholder Placeholder to add image to
|
55
|
+
* @param {File} file File to upload
|
56
|
+
* @param {object} that Context
|
57
|
+
* @param {void}
|
58
|
+
*/
|
59
|
+
uploadFile: function ($placeholder, file, that) {
|
60
|
+
$.ajax({
|
61
|
+
type: "post",
|
62
|
+
url: that.options.imagesUploadScript,
|
63
|
+
xhr: function () {
|
64
|
+
var xhr = new XMLHttpRequest();
|
65
|
+
xhr.upload.onprogress = that.updateProgressBar;
|
66
|
+
return xhr;
|
67
|
+
},
|
68
|
+
cache: false,
|
69
|
+
contentType: false,
|
70
|
+
complete: function (jqxhr) {
|
71
|
+
that.uploadCompleted(jqxhr, $placeholder);
|
72
|
+
},
|
73
|
+
processData: false,
|
74
|
+
data: that.options.formatData(file)
|
75
|
+
});
|
76
|
+
},
|
77
|
+
|
78
|
+
/**
|
79
|
+
* Makes ajax call for deleting a file on a server
|
80
|
+
*
|
81
|
+
* @param {string} file File name
|
82
|
+
* @param {object} that Context
|
83
|
+
* @return {void}
|
84
|
+
*/
|
85
|
+
deleteFile: function (file, that) {
|
86
|
+
$.ajax({
|
87
|
+
type: "post",
|
88
|
+
url: that.options.imagesDeleteScript,
|
89
|
+
data: {
|
90
|
+
file: file
|
91
|
+
}
|
92
|
+
});
|
93
|
+
}
|
94
|
+
},
|
95
|
+
|
96
|
+
|
97
|
+
/**
|
98
|
+
* Images initial function
|
99
|
+
*
|
100
|
+
* @param {object} options Options to overide defaults
|
101
|
+
* @return {void}
|
102
|
+
*/
|
103
|
+
|
104
|
+
init: function (options) {
|
105
|
+
if (options && options.$el) {
|
106
|
+
this.$el = options.$el;
|
107
|
+
}
|
108
|
+
this.options = $.extend(this.defaults, options);
|
109
|
+
|
110
|
+
this.setImageEvents();
|
111
|
+
|
112
|
+
if (this.options.useDragAndDrop === true){
|
113
|
+
this.setDragAndDropEvents();
|
114
|
+
}
|
115
|
+
|
116
|
+
this.preparePreviousImages();
|
117
|
+
|
118
|
+
},
|
119
|
+
|
120
|
+
|
121
|
+
/**
|
122
|
+
* Returns insert button
|
123
|
+
*
|
124
|
+
* @param {string} buttonLabels
|
125
|
+
* @return {string}
|
126
|
+
*/
|
127
|
+
|
128
|
+
insertButton: function(buttonLabels){
|
129
|
+
var label = 'Img';
|
130
|
+
if (buttonLabels === 'fontawesome' || typeof buttonLabels === 'object' && !!(buttonLabels.fontawesome)) {
|
131
|
+
label = '<i class="fa fa-picture-o"></i>';
|
132
|
+
}
|
133
|
+
|
134
|
+
if (typeof buttonLabels === 'object' && buttonLabels.img) {
|
135
|
+
label = buttonLabels.img;
|
136
|
+
}
|
137
|
+
|
138
|
+
return '<button data-addon="images" data-action="add" class="medium-editor-action mediumInsert-action">'+label+'</button>';
|
139
|
+
},
|
140
|
+
|
141
|
+
/**
|
142
|
+
* Make existing images interactive
|
143
|
+
*
|
144
|
+
* @return {void}
|
145
|
+
*/
|
146
|
+
|
147
|
+
preparePreviousImages: function () {
|
148
|
+
this.$el.find('.mediumInsert-images').each(function() {
|
149
|
+
var $parent = $(this).parent();
|
150
|
+
if (!$parent.hasClass('mediumInsert-placeholder')) {
|
151
|
+
$parent.html($.fn.mediumInsert.insert.getButtons('images') +
|
152
|
+
'<div class="mediumInsert-placeholder" draggable="true">' + $parent.html() + '</div>'
|
153
|
+
);
|
154
|
+
}
|
155
|
+
});
|
156
|
+
},
|
157
|
+
|
158
|
+
/**
|
159
|
+
* Add image to placeholder
|
160
|
+
*
|
161
|
+
* @param {element} $placeholder Placeholder to add image to
|
162
|
+
* @return {element} $selectFile <input type="file"> element
|
163
|
+
*/
|
164
|
+
|
165
|
+
add: function ($placeholder) {
|
166
|
+
var that = this,
|
167
|
+
$selectFile, files;
|
168
|
+
|
169
|
+
$selectFile = $('<input type="file" multiple="multiple">').click();
|
170
|
+
$selectFile.change(function () {
|
171
|
+
files = this.files;
|
172
|
+
that.uploadFiles($placeholder, files, that);
|
173
|
+
});
|
174
|
+
|
175
|
+
$.fn.mediumInsert.insert.deselect();
|
176
|
+
|
177
|
+
return $selectFile;
|
178
|
+
},
|
179
|
+
|
180
|
+
/**
|
181
|
+
* Update progressbar while upload
|
182
|
+
*
|
183
|
+
* @param {event} e XMLHttpRequest.upload.onprogress event
|
184
|
+
* @return {void}
|
185
|
+
*/
|
186
|
+
|
187
|
+
updateProgressBar: function (e) {
|
188
|
+
var $progress = $('.progress:first', this.$el),
|
189
|
+
complete;
|
190
|
+
|
191
|
+
if (e.lengthComputable) {
|
192
|
+
complete = e.loaded / e.total * 100;
|
193
|
+
complete = complete ? complete : 0;
|
194
|
+
$progress.attr('value', complete);
|
195
|
+
$progress.html(complete);
|
196
|
+
}
|
197
|
+
},
|
198
|
+
|
199
|
+
/**
|
200
|
+
* Show uploaded image after upload completed
|
201
|
+
*
|
202
|
+
* @param {jqXHR} jqxhr jqXHR object
|
203
|
+
* @return {void}
|
204
|
+
*/
|
205
|
+
|
206
|
+
uploadCompleted: function (jqxhr, $placeholder) {
|
207
|
+
var $progress = $('.progress:first', $placeholder),
|
208
|
+
$img;
|
209
|
+
|
210
|
+
$progress.attr('value', 100);
|
211
|
+
$progress.html(100);
|
212
|
+
|
213
|
+
if (jqxhr.responseText) {
|
214
|
+
$progress.before('<figure class="mediumInsert-images"><img src="'+ jqxhr.responseText +'" draggable="true" alt=""></figure>');
|
215
|
+
$img = $progress.siblings('img');
|
216
|
+
|
217
|
+
$img.load(function () {
|
218
|
+
$img.parent().mouseleave().mouseenter();
|
219
|
+
});
|
220
|
+
} else {
|
221
|
+
$progress.before('<div class="mediumInsert-error">There was a problem uploading the file.</div>');
|
222
|
+
|
223
|
+
setTimeout(function () {
|
224
|
+
$('.mediumInsert-error:first', $placeholder).fadeOut(function () {
|
225
|
+
$(this).remove();
|
226
|
+
});
|
227
|
+
}, 3000);
|
228
|
+
}
|
229
|
+
|
230
|
+
$progress.remove();
|
231
|
+
|
232
|
+
$placeholder.closest('[data-medium-element]').trigger('keyup').trigger('input');
|
233
|
+
},
|
234
|
+
|
235
|
+
/**
|
236
|
+
* Upload single file
|
237
|
+
*
|
238
|
+
* @param {element} $placeholder Placeholder to add image to
|
239
|
+
* @param {File} file File to upload
|
240
|
+
* @param {object} that Context
|
241
|
+
* @param {void}
|
242
|
+
*/
|
243
|
+
|
244
|
+
uploadFile: function ($placeholder, file, that) {
|
245
|
+
return that.options.uploadFile($placeholder, file, that);
|
246
|
+
},
|
247
|
+
|
248
|
+
/**
|
249
|
+
* Lopp though files, check file types and call uploadFile() function on each file that passes
|
250
|
+
*
|
251
|
+
* @param {element} placeholder Placeholder to add image to
|
252
|
+
* @param {FileList} files Files to upload
|
253
|
+
* @param {object} that Context
|
254
|
+
* @return {void}
|
255
|
+
*/
|
256
|
+
|
257
|
+
uploadFiles: function ($placeholder, files, that) {
|
258
|
+
var acceptedTypes = {
|
259
|
+
'image/png': true,
|
260
|
+
'image/jpeg': true,
|
261
|
+
'image/gif': true
|
262
|
+
};
|
263
|
+
|
264
|
+
for (var i = 0; i < files.length; i++) {
|
265
|
+
var file = files[i];
|
266
|
+
|
267
|
+
if (acceptedTypes[file.type] === true) {
|
268
|
+
$placeholder.append('<progress class="progress" min="0" max="100" value="0">0</progress>');
|
269
|
+
|
270
|
+
that.uploadFile($placeholder, file, that);
|
271
|
+
}
|
272
|
+
}
|
273
|
+
},
|
274
|
+
|
275
|
+
/**
|
276
|
+
* Makes ajax call for deleting a file on a server
|
277
|
+
*
|
278
|
+
* @param {string} file File name
|
279
|
+
* @param {object} that Context
|
280
|
+
* @return {void}
|
281
|
+
*/
|
282
|
+
|
283
|
+
deleteFile: function (file, that) {
|
284
|
+
return that.options.deleteFile(file, that);
|
285
|
+
},
|
286
|
+
|
287
|
+
/**
|
288
|
+
* Set image events displaying remove and resize buttons
|
289
|
+
*
|
290
|
+
* @return {void}
|
291
|
+
*/
|
292
|
+
|
293
|
+
setImageEvents: function () {
|
294
|
+
var that = this;
|
295
|
+
|
296
|
+
this.$el.on('mouseenter', '.mediumInsert-images', function () {
|
297
|
+
var $img = $('img', this),
|
298
|
+
positionTop,
|
299
|
+
positionLeft;
|
300
|
+
|
301
|
+
if ($.fn.mediumInsert.settings.enabled === false) {
|
302
|
+
return;
|
303
|
+
}
|
304
|
+
|
305
|
+
if ($img.length > 0) {
|
306
|
+
$(this).append('<a class="mediumInsert-imageIcon mediumInsert-imageRemove"></a>');
|
307
|
+
|
308
|
+
if ($(this).prevAll().length === 0) {
|
309
|
+
if ($(this).parent().parent().hasClass('small')) {
|
310
|
+
$(this).append('<a class="mediumInsert-imageIcon mediumInsert-imageResizeBigger"></a>');
|
311
|
+
} else {
|
312
|
+
$(this).append('<a class="mediumInsert-imageIcon mediumInsert-imageResizeSmaller"></a>');
|
313
|
+
}
|
314
|
+
}
|
315
|
+
|
316
|
+
if ($(this).siblings().length === 0) {
|
317
|
+
if ($img.parent().is('a')) {
|
318
|
+
$(this).append('<a class="mediumInsert-imageIcon mediumInsert-imageUnlink"></a>');
|
319
|
+
} else {
|
320
|
+
$(this).append('<a class="mediumInsert-imageIcon mediumInsert-imageLink"></a>');
|
321
|
+
}
|
322
|
+
}
|
323
|
+
|
324
|
+
positionTop = $img.position().top + parseInt($img.css('margin-top'), 10);
|
325
|
+
positionLeft = $img.position().left + $img.width() -30;
|
326
|
+
$('.mediumInsert-imageRemove', this).css({
|
327
|
+
'right': 'auto',
|
328
|
+
'top': positionTop,
|
329
|
+
'left': positionLeft
|
330
|
+
});
|
331
|
+
$('.mediumInsert-imageResizeBigger, .mediumInsert-imageResizeSmaller', this).css({
|
332
|
+
'right': 'auto',
|
333
|
+
'top': positionTop,
|
334
|
+
'left': positionLeft-31
|
335
|
+
});
|
336
|
+
$('.mediumInsert-imageLink, .mediumInsert-imageUnlink', this).css({
|
337
|
+
'right': 'auto',
|
338
|
+
'top': positionTop,
|
339
|
+
'left': positionLeft-62
|
340
|
+
});
|
341
|
+
}
|
342
|
+
});
|
343
|
+
|
344
|
+
this.$el.on('mouseleave', '.mediumInsert-images', function () {
|
345
|
+
$('.mediumInsert-imageIcon', this).remove();
|
346
|
+
});
|
347
|
+
|
348
|
+
this.$el.on('click', '.mediumInsert-imageResizeSmaller', function () {
|
349
|
+
$(this).parent().parent().parent().addClass('small');
|
350
|
+
$(this).parent().mouseleave().mouseleave();
|
351
|
+
|
352
|
+
$.fn.mediumInsert.insert.deselect();
|
353
|
+
that.$el.trigger('keyup').trigger('input');
|
354
|
+
});
|
355
|
+
|
356
|
+
this.$el.on('click', '.mediumInsert-imageResizeBigger', function () {
|
357
|
+
$(this).parent().parent().parent().removeClass('small');
|
358
|
+
$(this).parent().mouseleave().mouseleave();
|
359
|
+
|
360
|
+
$.fn.mediumInsert.insert.deselect();
|
361
|
+
that.$el.trigger('keyup').trigger('input');
|
362
|
+
});
|
363
|
+
|
364
|
+
this.$el.on('click', '.mediumInsert-imageRemove', function () {
|
365
|
+
var img = $(this).siblings('img').attr('src');
|
366
|
+
|
367
|
+
if ($(this).parent().siblings().length === 0) {
|
368
|
+
$(this).parent().parent().parent().removeClass('small');
|
369
|
+
}
|
370
|
+
$(this).parent().remove();
|
371
|
+
|
372
|
+
that.deleteFile(img, that);
|
373
|
+
|
374
|
+
$.fn.mediumInsert.insert.deselect();
|
375
|
+
|
376
|
+
that.$el.trigger('keyup').trigger('input');
|
377
|
+
});
|
378
|
+
|
379
|
+
this.$el.on('click', '.mediumInsert-imageLink', function () {
|
380
|
+
var $placeholder = $(this).closest('.mediumInsert-placeholder'),
|
381
|
+
$formHtml = $('<div class="medium-editor-toolbar medium-editor-toolbar-active medium-editor-toolbar-form-anchor mediumInsert-imageLinkWire" style="display: block;"><input type="text" value="" placeholder="' + that.options.urlPlaceholder + '" class="mediumInsert-imageLinkText medium-editor-toolbar-anchor-input"></div>');
|
382
|
+
|
383
|
+
$formHtml.appendTo($placeholder);
|
384
|
+
setTimeout(function () {
|
385
|
+
$formHtml.find('input').focus();
|
386
|
+
}, 50);
|
387
|
+
|
388
|
+
$.fn.mediumInsert.insert.deselect();
|
389
|
+
});
|
390
|
+
|
391
|
+
this.$el.on('click', '.mediumInsert-imageUnlink', function () {
|
392
|
+
var $figure = $(this).closest('.mediumInsert-images');
|
393
|
+
|
394
|
+
$figure.find('img').unwrap();
|
395
|
+
|
396
|
+
$(this).removeClass('mediumInsert-imageUnlink')
|
397
|
+
.addClass('mediumInsert-imageLink');
|
398
|
+
|
399
|
+
that.$el.trigger('keyup').trigger('input');
|
400
|
+
});
|
401
|
+
|
402
|
+
this.$el
|
403
|
+
.on('keypress', '.mediumInsert-imageLinkText', function (e) {
|
404
|
+
var $placeholder = $(this).closest('.mediumInsert-placeholder');
|
405
|
+
|
406
|
+
if ((e.which && e.which === 13) || (e.keyCode && e.keyCode === 13)) {
|
407
|
+
$placeholder.find('.mediumInsert-images:first').find('img').wrap('<a href="'+ $(this).val() +'" target="_blank"></a>');
|
408
|
+
$placeholder.find('.mediumInsert-imageLink')
|
409
|
+
.removeClass('mediumInsert-imageLink')
|
410
|
+
.addClass('mediumInsert-imageUnlink');
|
411
|
+
|
412
|
+
// Workaround for "Uncaught NotFoundError: Failed to execute 'removeChild' on 'Node': The node to be removed is no longer a child of this node. Perhaps it was moved in a 'blur' event handler?"
|
413
|
+
try {
|
414
|
+
$('.mediumInsert-imageLinkWire').remove();
|
415
|
+
} catch(err) {}
|
416
|
+
|
417
|
+
that.$el.trigger('keyup').trigger('input');
|
418
|
+
}
|
419
|
+
})
|
420
|
+
.on('blur', '.mediumInsert-imageLinkText', function () {
|
421
|
+
$('.mediumInsert-imageLinkWire').remove();
|
422
|
+
})
|
423
|
+
.on('paste', '.mediumInsert-imageLinkText', function (e) {
|
424
|
+
if ($.fn.mediumInsert.insert.isFirefox && e.originalEvent.clipboardData) {
|
425
|
+
$(this).val(e.originalEvent.clipboardData.getData('text/plain'));
|
426
|
+
}
|
427
|
+
});
|
428
|
+
},
|
429
|
+
|
430
|
+
/**
|
431
|
+
* Set drag and drop events
|
432
|
+
*
|
433
|
+
* @return {void}
|
434
|
+
*/
|
435
|
+
|
436
|
+
setDragAndDropEvents: function () {
|
437
|
+
var that = this,
|
438
|
+
dropSuccessful = false,
|
439
|
+
dropSort = false,
|
440
|
+
dropSortIndex, dropSortParent;
|
441
|
+
|
442
|
+
$(document).on('dragover', 'body', function () {
|
443
|
+
if ($.fn.mediumInsert.settings.enabled === false) {
|
444
|
+
return;
|
445
|
+
}
|
446
|
+
|
447
|
+
that.$el.addClass('hover');
|
448
|
+
});
|
449
|
+
|
450
|
+
$(document).on('dragend', 'body', function () {
|
451
|
+
if ($.fn.mediumInsert.settings.enabled === false) {
|
452
|
+
return;
|
453
|
+
}
|
454
|
+
|
455
|
+
that.$el.removeClass('hover');
|
456
|
+
});
|
457
|
+
|
458
|
+
this.$el.on('dragover', '.mediumInsert', function () {
|
459
|
+
if ($.fn.mediumInsert.settings.enabled === false) {
|
460
|
+
return;
|
461
|
+
}
|
462
|
+
|
463
|
+
$(this).addClass('hover');
|
464
|
+
$(this).attr('contenteditable', true);
|
465
|
+
});
|
466
|
+
|
467
|
+
this.$el.on('dragleave', '.mediumInsert', function () {
|
468
|
+
if ($.fn.mediumInsert.settings.enabled === false) {
|
469
|
+
return;
|
470
|
+
}
|
471
|
+
|
472
|
+
$(this).removeClass('hover');
|
473
|
+
$(this).attr('contenteditable', false);
|
474
|
+
});
|
475
|
+
|
476
|
+
this.$el.on('dragstart', '.mediumInsert .mediumInsert-images img', function () {
|
477
|
+
if ($.fn.mediumInsert.settings.enabled === false) {
|
478
|
+
return;
|
479
|
+
}
|
480
|
+
|
481
|
+
dropSortIndex = $(this).parent().index();
|
482
|
+
dropSortParent = $(this).parent().parent().parent().attr('id');
|
483
|
+
});
|
484
|
+
|
485
|
+
this.$el.on('dragend', '.mediumInsert .mediumInsert-images img', function (e) {
|
486
|
+
if ($.fn.mediumInsert.settings.enabled === false) {
|
487
|
+
return;
|
488
|
+
}
|
489
|
+
|
490
|
+
if (dropSuccessful === true) {
|
491
|
+
if ($(e.originalEvent.target.parentNode).siblings().length === 0) {
|
492
|
+
$(e.originalEvent.target.parentNode).parent().parent().removeClass('small');
|
493
|
+
}
|
494
|
+
$(e.originalEvent.target.parentNode).mouseleave();
|
495
|
+
$(e.originalEvent.target.parentNode).remove();
|
496
|
+
dropSuccessful = false;
|
497
|
+
dropSort = false;
|
498
|
+
|
499
|
+
that.$el.trigger('keyup').trigger('input');
|
500
|
+
}
|
501
|
+
});
|
502
|
+
|
503
|
+
this.$el.on('dragover', '.mediumInsert .mediumInsert-images img', function (e) {
|
504
|
+
if ($.fn.mediumInsert.settings.enabled === false) {
|
505
|
+
return;
|
506
|
+
}
|
507
|
+
|
508
|
+
e.preventDefault();
|
509
|
+
});
|
510
|
+
|
511
|
+
this.$el.on('drop', '.mediumInsert .mediumInsert-images img', function () {
|
512
|
+
var index, $dragged, finalIndex;
|
513
|
+
|
514
|
+
if ($.fn.mediumInsert.settings.enabled === false) {
|
515
|
+
return;
|
516
|
+
}
|
517
|
+
|
518
|
+
|
519
|
+
if (dropSortParent !== $(this).parent().parent().parent().attr('id')) {
|
520
|
+
dropSort = false;
|
521
|
+
dropSortIndex = dropSortParent = null;
|
522
|
+
return;
|
523
|
+
}
|
524
|
+
|
525
|
+
index = parseInt(dropSortIndex, 10);
|
526
|
+
|
527
|
+
// Sort
|
528
|
+
$dragged = $(this).parent().parent().find('.mediumInsert-images:nth-child('+ (index+1) +')');
|
529
|
+
finalIndex = $(this).parent().index();
|
530
|
+
if(index < finalIndex) {
|
531
|
+
$dragged.insertAfter($(this).parent());
|
532
|
+
} else if(index > finalIndex) {
|
533
|
+
$dragged.insertBefore($(this).parent());
|
534
|
+
}
|
535
|
+
|
536
|
+
$dragged.mouseleave();
|
537
|
+
|
538
|
+
dropSort = true;
|
539
|
+
dropSortIndex = null;
|
540
|
+
|
541
|
+
that.$el.trigger('keyup').trigger('input');
|
542
|
+
});
|
543
|
+
|
544
|
+
this.$el.on('drop', '.mediumInsert', function (e) {
|
545
|
+
var files;
|
546
|
+
|
547
|
+
e.preventDefault();
|
548
|
+
|
549
|
+
if ($.fn.mediumInsert.settings.enabled === false) {
|
550
|
+
return;
|
551
|
+
}
|
552
|
+
|
553
|
+
$(this).removeClass('hover');
|
554
|
+
that.$el.removeClass('hover');
|
555
|
+
$(this).attr('contenteditable', false);
|
556
|
+
|
557
|
+
files = e.originalEvent.dataTransfer.files;
|
558
|
+
if (files.length > 0) {
|
559
|
+
// File upload
|
560
|
+
that.uploadFiles($('.mediumInsert-placeholder', this), files, that);
|
561
|
+
} else if (dropSort === true) {
|
562
|
+
dropSort = false;
|
563
|
+
} else {
|
564
|
+
// Image move from block to block
|
565
|
+
$('.mediumInsert-placeholder', this).append('<figure class="mediumInsert-images">'+ e.originalEvent.dataTransfer.getData('text/html') +'</figure>');
|
566
|
+
$('meta', this).remove();
|
567
|
+
dropSuccessful = true;
|
568
|
+
}
|
569
|
+
});
|
570
|
+
}
|
571
|
+
});
|
572
|
+
}(jQuery));
|