parent
6e181605d7
commit
757e74d127
@ -1,99 +1,113 @@ |
||||
|
||||
function createWord( word ) |
||||
{ |
||||
var s = ''; |
||||
for( var i = 0; i < word.length; i++ ) |
||||
{ |
||||
ch = word.charAt( i ); |
||||
s +=
|
||||
'<span class="upper">' + |
||||
'<span>' + ch + '</span>' + |
||||
(( i < word.length - 1 ) ? |
||||
'<span class="dash">–</span>' : '' ) + |
||||
'</span>'; |
||||
} |
||||
return s; |
||||
var s = ''; |
||||
for( var i = 0; i < word.length; i++ ) |
||||
{ |
||||
ch = word.charAt( i ); |
||||
s +=
|
||||
'<span class="upper">' + |
||||
'<span>' + ch + '</span>' + |
||||
(( i < word.length - 1 ) ? |
||||
'<span class="dash">–</span>' : '' ) + |
||||
'</span>'; |
||||
} |
||||
return s; |
||||
} |
||||
|
||||
$(document).ready(function() |
||||
{ |
||||
var w = new wcontainer( "#ub-widget" ); |
||||
var w = new wcontainer( "#ub-widget" ); |
||||
var words = ""; |
||||
|
||||
if(window.sankore) |
||||
words = (sankore.preference("ordSplWords", ""))?sankore.preference("ordSplWords", ""):"so*phis*ti*ca*ted"; |
||||
else |
||||
words = "so*phis*ti*ca*ted"; |
||||
w.setEditContent( '<div class="inputwrap"><input class="percent" value="' + words + '"></div>' ); |
||||
w.setViewContent( '<span class="upper"><span class="dash fixed">—</span></span>' ); |
||||
w.setData( "dashWidth", w.elements.container.find( "span.dash" ).outerWidth() ); |
||||
w.setViewContent( "" ); |
||||
|
||||
w.setEditContent( '<div class="inputwrap"><input class="percent" value="so*phis*ti*ca*ted"></div>' ); |
||||
w.setViewContent( '<span class="upper"><span class="dash fixed">—</span></span>' ); |
||||
w.setData( "dashWidth", w.elements.container.find( "span.dash" ).outerWidth() ); |
||||
w.setViewContent( "" ); |
||||
|
||||
// onViewMode
|
||||
w.onViewMode = function() |
||||
{ |
||||
var word = w.elements.container.find( "input" ).val().trim( ['*'] ); |
||||
// onViewMode
|
||||
w.onViewMode = function() |
||||
{ |
||||
var word = w.elements.container.find( "input" ).val().trim( ['*'] ); |
||||
|
||||
w.setData( "word", word ); |
||||
word = word.replace( /\*/g, '' ); |
||||
w.setViewContent( createWord( word ) ); |
||||
w.elements.container.find( "span.upper" ).click( function(){ |
||||
$( this ).find( "span.dash" ).toggleClass( "fixed" ); |
||||
w.adjustSize(); |
||||
w.checkAnswer(); |
||||
}); |
||||
w.checkAnswer(); |
||||
}; |
||||
w.setData( "word", word ); |
||||
word = word.replace( /\*/g, '' ); |
||||
w.setViewContent( createWord( word ) ); |
||||
w.elements.container.find( "span.upper" ).click( function(){ |
||||
$( this ).find( "span.dash" ).toggleClass( "fixed" ); |
||||
w.adjustSize(); |
||||
w.checkAnswer(); |
||||
}); |
||||
w.checkAnswer(); |
||||
}; |
||||
|
||||
// viewSize
|
||||
w.viewSize = function() |
||||
{ |
||||
var w = 0; |
||||
var h = 0; |
||||
// viewSize
|
||||
w.viewSize = function() |
||||
{ |
||||
var w = 0; |
||||
var h = 0; |
||||
|
||||
winstance.elements.containerView.find( "span.upper span:visible" ).each( function() |
||||
{ |
||||
w += $( this ).outerWidth(); |
||||
h = Math.max( h, $( this ).outerHeight() ); |
||||
}); |
||||
var dw = winstance.getData( "dashWidth" ); |
||||
winstance.elements.containerView.find( "span.upper span:visible" ).each( function() |
||||
{ |
||||
w += $( this ).outerWidth(); |
||||
h = Math.max( h, $( this ).outerHeight() ); |
||||
}); |
||||
var dw = winstance.getData( "dashWidth" ); |
||||
|
||||
return { w: w+dw, h: h }; |
||||
}; |
||||
return { |
||||
w: w+dw,
|
||||
h: h |
||||
}; |
||||
}; |
||||
|
||||
// editSize
|
||||
w.editSize = function() |
||||
{ |
||||
return { |
||||
w: winstance.elements.containerEdit.find( "input" ).outerWidth( true ), |
||||
h: winstance.elements.containerEdit.find( "input" ).outerHeight( true ), |
||||
}; |
||||
}; |
||||
// editSize
|
||||
w.editSize = function() |
||||
{ |
||||
return { |
||||
w: winstance.elements.containerEdit.find( "input" ).outerWidth( true ), |
||||
h: winstance.elements.containerEdit.find( "input" ).outerHeight( true ), |
||||
}; |
||||
}; |
||||
|
||||
|
||||
w.checkAnswer = function() |
||||
{ |
||||
var word = ""; |
||||
this.elements.container.find( "span.upper span:visible" ).each( function() |
||||
{ |
||||
if( this.className.indexOf( "fixed" ) != -1 ){ |
||||
word += '*'; |
||||
} |
||||
else if( this.className.indexOf( "dash" ) != -1 ){ |
||||
return; |
||||
} |
||||
else{ |
||||
word += $( this ).text(); |
||||
} |
||||
}); |
||||
w.checkAnswer = function() |
||||
{ |
||||
var word = ""; |
||||
this.elements.container.find( "span.upper span:visible" ).each( function() |
||||
{ |
||||
if( this.className.indexOf( "fixed" ) != -1 ){ |
||||
word += '*'; |
||||
} |
||||
else if( this.className.indexOf( "dash" ) != -1 ){ |
||||
return; |
||||
} |
||||
else{ |
||||
word += $( this ).text(); |
||||
} |
||||
}); |
||||
|
||||
if( word == this.getData( "word" ) ){ |
||||
this.elements.container.addClass( "answerRight" ); |
||||
} |
||||
else{ |
||||
this.elements.container.removeClass( "answerRight" ); |
||||
} |
||||
}; |
||||
if( word == this.getData( "word" ) ){ |
||||
this.elements.container.addClass( "answerRight" ); |
||||
} |
||||
else{ |
||||
this.elements.container.removeClass( "answerRight" ); |
||||
} |
||||
}; |
||||
|
||||
|
||||
window.w = w; |
||||
window.winstance = w; |
||||
window.w = w; |
||||
window.winstance = w; |
||||
|
||||
w.modeView(); |
||||
w.modeView(); |
||||
|
||||
$(window).mouseout(function(){ |
||||
if(window.sankore){ |
||||
sankore.setPreference("ordSplWords", w.getData("word")); |
||||
} |
||||
}); |
||||
|
||||
}); |
Loading…
Reference in new issue