PluginProbe
Darkify – Dark Mode & Night Mode for Website & Admin (Dark Theme Included) / 1.0.1
Darkify – Dark Mode & Night Mode for Website & Admin (Dark Theme Included) v1.0.1
2.1.3 2.1.2 2.1.1 2.1.0 2.0.4 2.0.3 2.0.2 2.0.1 2.0.0 1.5.5 1.5.4 1.5.3 1.5.2 1.5.1 1.5.0 trunk 1.0.1 1.1.0 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.3.0 All 57 releases
darkify / admin / js / darkify-admin.js

darkify-admin.js in Darkify – Dark Mode & Night Mode for Website & Admin (Dark Theme Included) 1.0.1, at admin/js/darkify-admin.js

32 lines 739 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 (function ($) {
2 "use strict";
3 $(document).on("click", "#switcher_shortcode_copy", function (e) {
4 e.preventDefault();
5 /* Get the text field */
6 $(this).siblings("#switcher_shortcode").select();
7 /* Select the text field */
8 document.execCommand("copy");
9 $(".switcher_shortcode_after_copy").animate(
10 {
11 opacity: 1,
12 bottom: 25,
13 },
14 300
15 );
16 setTimeout(function () {
17 jQuery(".switcher_shortcode_after_copy").animate(
18 {
19 opacity: 0,
20 },
21 200
22 );
23 jQuery(".switcher_shortcode_after_copy").animate(
24 {
25 bottom: 0,
26 },
27 0
28 );
29 }, 2000);
30 });
31
32 })(jQuery);