scroll dots on article_frontend fixed
This commit is contained in:
parent
1ad1f29815
commit
49bd113b2a
|
@ -10,7 +10,7 @@ try:
|
|||
import json
|
||||
except:
|
||||
import simplejson as json
|
||||
from django.template import Template, Context
|
||||
from django.template import Template, Context, RequestContext
|
||||
from django.template.loader import get_template
|
||||
from os.path import join
|
||||
from settings import MEDIA_ROOT, SITE_BASE, UPLOAD_ROOT, PROJECT_PATH
|
||||
|
@ -585,6 +585,7 @@ def article_webalone(request, article_id):
|
|||
'articles_before': [],
|
||||
'articles_after': []
|
||||
}
|
||||
d = RequestContext(request, d)
|
||||
return render_to_response("article_frontend.html", d)
|
||||
|
||||
def poll_changes(request):
|
||||
|
|
|
@ -48,7 +48,9 @@ $(document).ready(function() {
|
|||
// $('.audioBtn').colorbox({width: '350px', height: '180px', inline: true, href: '#audioWrap'});
|
||||
$('.videoBtn').colorbox({width: '445px', height: '550px', inline: true, href: '#videoWrap'});
|
||||
// $('.audioBtn').colorbox({width: '445px', height: '550px', inline: true, href: '#audioWrap'});
|
||||
|
||||
scrollPages();
|
||||
|
||||
$('#languageBtn').toggle(function() {
|
||||
$('.arabicBtn').hide();
|
||||
$('.englishBtn').show();
|
||||
|
@ -70,7 +72,7 @@ function scrollPages() {
|
|||
var DOT_DEFAULT = '/static/images/pageOff.png';
|
||||
var DOT_HOVER = '/static/images/pagehover.png';
|
||||
var DOT_CURRENT = '/static/images/pageOn.png';
|
||||
var PAGE_HEIGHT = 1270;
|
||||
var PAGE_HEIGHT = $('.page').eq(0).height() + 20;
|
||||
var OFFSET_VAL = 80;
|
||||
var noOfPages = $('.page').length;
|
||||
var currentPage = -1;
|
||||
|
|
|
@ -1341,7 +1341,7 @@ $(".box").live("mouseout", function(){
|
|||
|
||||
function cropImage(c)
|
||||
{
|
||||
url = '/edit/imagebox/crop/?x1=' + c.x + '&y1=' + c.y + '&x2=' + c.x2 + '&y2=' + c.y2 + '&width=' + c.w + '&height=' + c.h + '&id=' + this_imagebox_id + '&uuid=' + UUID;
|
||||
crop_url = '/edit/imagebox/crop/?x1=' + c.x + '&y1=' + c.y + '&x2=' + c.x2 + '&y2=' + c.y2 + '&width=' + c.w + '&height=' + c.h + '&id=' + this_imagebox_id + '&uuid=' + UUID;
|
||||
crop_dimensions = c;
|
||||
};
|
||||
|
||||
|
@ -1537,7 +1537,7 @@ $(".box").live("click", function(e){
|
|||
box.resizable( 'enable' );
|
||||
|
||||
// console.log(url);
|
||||
$.getJSON(url, {
|
||||
$.getJSON(crop_url, {
|
||||
'article_id': ARTICLE_ID
|
||||
}, function(data) {
|
||||
// console.log(data.path);
|
||||
|
@ -1556,6 +1556,7 @@ $(".box").live("click", function(e){
|
|||
});
|
||||
|
||||
$(".cancel_crop_imagebox").bind("click", function(e){
|
||||
e.preventDefault();
|
||||
jcrop.destroy();
|
||||
$('.imagebox_crop').remove();
|
||||
box.resizable( 'enable' );
|
||||
|
|
|
@ -170,7 +170,6 @@ p {
|
|||
<div id="languageBtn"><span class="arabicBtn">االقائمة العربية</span> <span class="englishBtn">English Menu</span></div>
|
||||
</div>
|
||||
|
||||
|
||||
{% autoescape off %}
|
||||
{% for p in pages %}
|
||||
<div class="page" id="page{{p.id}}">
|
||||
|
|
Loading…
Reference in New Issue
Block a user