Changeset 1078068
- Timestamp:
- 01/29/2015 09:34:01 AM (11 years ago)
- Location:
- bp-cover/trunk
- Files:
-
- 1 deleted
- 4 edited
-
bp-cover.php (modified) (3 diffs)
-
css/bp-cover.css (modified) (1 diff)
-
js/bp-cover.js (modified) (2 diffs)
-
js/jquery-1.10.2.js (deleted)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bp-cover/trunk/bp-cover.php
r1077969 r1078068 4 4 Plugin URI: 5 5 Description: Adds cover image in profile page. 6 Version: 1.5. 16 Version: 1.5.2 7 7 Author: asghar hatampoor 8 8 Author URI: http://webcaffe.ir … … 11 11 */ 12 12 if ( !defined( 'BPCO_PLUGIN_VERSION' ) ) 13 define( 'BPCO_PLUGIN_VERSION', '1.5. 0' );13 define( 'BPCO_PLUGIN_VERSION', '1.5.2' ); 14 14 15 15 if ( !defined( 'BPCO_PLUGIN_DIRNAME' ) ) … … 71 71 <div class="uploadBox" id="bannerfileupload">'; 72 72 if(!empty($image)) { 73 $filter .='<a href="#" class="btnc btn-remove btn-sm" ><i class="fa fa-remove"></i></a><a href="#" class="edit btnc btn-info btn-sm" ><i class="fa fa-edit"></i></a><a href="#" class="btnc btn-save btn-sm" ><i class="fa fa-save"></i></a>';73 $filter .='<a href="#" class="btnc btn-remove btn-sm" ><i class="fa fa-remove"></i></a><a href="#" class="edit-cover btnc btn-info btn-sm" ><i class="fa fa-edit"></i></a><a href="#" class="btnc btn-save btn-sm" ><i class="fa fa-save"></i></a>'; 74 74 } 75 75 $filter .='<a href="javascript:void(0)" id="uploadcover" class="btnc btn-info btn-sm" href=""><i class="fa fa-cloud-upload"></i></a> -
bp-cover/trunk/css/bp-cover.css
r1077564 r1078068 136 136 border-radius: 3px; 137 137 } 138 .edit {138 .edit-cover{ 139 139 display:none; 140 140 } -
bp-cover/trunk/js/bp-cover.js
r1077564 r1078068 2 2 (function($){ 3 3 $('.btn-save').hide(); 4 $('.edit ').click(function() {4 $('.edit-cover').click(function() { 5 5 $('#profile-mass').fadeIn("slow"); 6 6 $(".img-profile-header-background").css('cursor', 'pointer'); … … 25 25 stop: function(event, ui) { 26 26 $('input[name=id]').val(ui.position.top); 27 $('.edit ').hide();27 $('.edit-cover').hide(); 28 28 $('#profile-mass').fadeOut("slow"); 29 29 $('.btn-save').show(); -
bp-cover/trunk/readme.txt
r1077969 r1078068 5 5 Requires at least: 4.1 6 6 Tested up to: 4.1 7 Stable tag: 1.5. 17 Stable tag: 1.5.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 42 42 43 43 == Changelog == 44 = 1.5.2 = 45 - fix css for Redirect failing at blank-page 46 47 44 48 = 1.5.1 = 45 49 - fix js
Note: See TracChangeset
for help on using the changeset viewer.