Plugin Directory

Changeset 940108


Ignore:
Timestamp:
06/28/2014 05:58:37 PM (11 years ago)
Author:
Chris Hudson
Message:

JS (jQuery) Conflicts Resolved as few Wordpress Customers reported which they experienced on newer WordPress versions

Location:
wordpress-protection
Files:
10 added
4 edited

Legend:

Unmodified
Added
Removed
  • wordpress-protection/trunk/readme.txt

    r898029 r940108  
    66Tags: wordpress, protection, Post, posts, copy, protect, click, right, disable, image, page, google, SEO, plugin, content, security, block, javascript
    77Requires at least: Wordpress 2+
    8 Tested up to: 3.9
    9 Stable tag: 7.0
     8Tested up to: 3.9.1
     9Stable tag: 7.2
    1010
    1111== Description ==
     
    1818* **Fully Optimized**
    1919* **No Compromise with SEO**. Search engines (like Google, Bing, Yahoo) will still be able grab to your content.
    20 * **Disables Image Drag and Drop (Available In Professional Version Only)**
     20* **Disables Image Drag and Drop and Image Protection on All Devices - PC, Mac, Tablets and Mobile Phones (Available In Professional Version Only)**
    2121* **And a number of Features (Available In Professional Version Only)**
    2222
     
    4848
    4949== Changelog ==
     50* ver : 7.2 : JS Conflicts Resolved as few Wordpress Customers reported which they experienced on newer WordPress versions
    5051* ver : 7.0 : Bugs fixed.
    5152* ver : 6.0 : Added compatibility with latest browser versions. Removed the conflicting option.
  • wordpress-protection/trunk/settings.php

    r810306 r940108  
    1515define('WPL_ADMIN_URL', get_admin_url()."options-general.php?page=".basename(dirname(__FILE__) . '.php'));
    1616define('WPL_BASIC_ASSETS', WPL_BASIC_BASE . '/assets');
    17 define('WPL_BASIC_DB_VERSION', '7.0');
     17define('WPL_BASIC_DB_VERSION', '7.2');
    1818define('WPL_BASIC_SUPPORT_EMAIL', 'support@' . strtolower(WPL_BASIC_WEB_HOME_PAGE_NAME));
    1919define('WPL_BASIC_FACEBOOK_LINK', "http://www.facebook.com/" . WPL_BASIC_WEB_HOME_PAGE_NAME_SHORT);
  • wordpress-protection/trunk/wordpress-protection.php

    r810307 r940108  
    44Plugin URI: http://www.edarpan.com/pages/wordpress-protection
    55Description: <strong>WordPress Protection Plugin</strong> provides complete security for your wordpress website, so that the plagiarists could not copy the content and steal data or images from your wordpress site Pages. By using the WordPress Protection Plugin (Basic), you can disable the text-selection, shortcuts like CTRL+C, CTRL+A, CTRL+X, CTRL+V and block the use of right click on your website. However, to apply full security to your wordpress website, you can purchase the <a href="http://www.edarpan.com/pages/wordpress-protection">Professional WordPress Protection</a> Plugin.
    6 Version: 7.0
     6Version: 7.2
    77Author: eDarpan.com
    88Author URI: http://www.edarpan.com/
     
    1010*************************************************************************
    1111
    12 Copyright (C) 2013 eDarpan.com
     12Copyright (C) 2014 eDarpan.com
    1313
    1414This program is free software: you can redistribute it and/or modify
     
    101101        ?>
    102102        <script type="text/javascript">
    103         (function($){
    104             $(document).ready(function()
    105             {
    106                 $(document).bind("cut copy paste",function(e) {
    107                   e.preventDefault();
    108                 });
     103        jQuery(document).ready(function()
     104        {
     105            jQuery(document).bind("cut copy paste",function(e) {
     106              e.preventDefault();
    109107            });
    110         })(jQuery);
     108        });
    111109        </script>
    112110        <?php
     
    121119        <script type='text/javascript' security="edarpan">
    122120        var message = "<?php echo (isset($text) ? $text : ''); ?>";
    123         (function($){
    124             $(document).ready(function(){
    125                 $(document).bind("contextmenu",function(e){
    126                     <?php echo ( (isset($text) && !empty($text)) ? 'alert(message);' : '' ); ?>
    127                     return false;
    128                 });
     121        jQuery(document).ready(function(){
     122            jQuery(document).bind("contextmenu",function(e){
     123                <?php echo ( (isset($text) && !empty($text)) ? 'alert(message);' : '' ); ?>
     124                return false;
    129125            });
    130         })(jQuery);
     126        });
    131127        </script>
    132128        <?php
     
    334330        <script type="text/javascript">
    335331            var ed_bl_index;
    336             (function($){
    337                 $(document).ready(function(e){
    338                     disableSelection(document.body);
    339                 });
    340             })(jQuery);
     332            jQuery(document).ready(function(e){
     333                disableSelection(document.body);
     334            });
    341335        </script>
    342336        <!-- Wordpress Protection Plugin by eDarpan.com - http://www.edarpan.com/pages/wordpress-protection -->
Note: See TracChangeset for help on using the changeset viewer.