mirror of
https://github.com/twisterarmy/twister-html.git
synced 2025-01-14 00:48:05 +00:00
Merge branch 'master' of https://github.com/miguelfreitas/twister-html into visual_fixes
This commit is contained in:
commit
30e6aeb576
@ -27,6 +27,8 @@
|
||||
initInterfaceFollowing();
|
||||
});
|
||||
</script>
|
||||
|
||||
<link rel="icon" type="image/png" href="img/twister_mini.png" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -22,6 +22,8 @@
|
||||
<script src="twister_directmsg.js"></script>
|
||||
<script src="interface_common.js"></script>
|
||||
<script src="interface_home.js"></script>
|
||||
|
||||
<link rel="icon" type="image/png" href="img/twister_mini.png" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -23,7 +23,7 @@
|
||||
</script>
|
||||
<script src="jquery.mobile-1.3.2.min.js"></script>
|
||||
|
||||
|
||||
<link rel="icon" type="image/png" href="img/twister_mini.png" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
@ -447,7 +447,7 @@ var retweetSubmit = function(e)
|
||||
|
||||
|
||||
function initInterfaceCommon() {
|
||||
$( "body, .cancel, .modal-blackout" ).on( "click", function() { closeModal($(this)); } );
|
||||
$( "body" ).on( "click", ".cancel" , function() { closeModal($(this)); } );
|
||||
$( ".post-reply" ).bind( "click", postReplyClick );
|
||||
$( ".post-propagate" ).bind( "click", reTwistPopup );
|
||||
$( ".userMenu-config-dropdown" ).bind( "click", dropDownMenu );
|
||||
|
@ -22,6 +22,8 @@
|
||||
initInterfaceLogin();
|
||||
});
|
||||
</script>
|
||||
|
||||
<link rel="icon" type="image/png" href="img/twister_mini.png" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -24,6 +24,8 @@
|
||||
initInterfaceNetwork();
|
||||
});
|
||||
</script>
|
||||
|
||||
<link rel="icon" type="image/png" href="img/twister_mini.png" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -24,6 +24,8 @@
|
||||
initProfileEdit();
|
||||
});
|
||||
</script>
|
||||
|
||||
<link rel="icon" type="image/png" href="img/twister_mini.png" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -40,6 +40,8 @@
|
||||
<script src="interface_common.js?vr=9"></script>
|
||||
<script src="tmobile.js?vr=9"></script>
|
||||
<script src="jpeg_encoder_basic.js"></script>
|
||||
|
||||
<link rel="icon" type="image/png" href="img/twister_mini.png" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
@ -355,6 +355,11 @@ function closeSearchDialog()
|
||||
|
||||
function userSearchKeypress(item) {
|
||||
var partialName = $(".userMenu-search-field").val().toLowerCase();
|
||||
|
||||
if ( partialName.substr( 0, 1 ) == '@' ) {
|
||||
partialName = partialName.substr( 1 );
|
||||
}
|
||||
|
||||
//var partialName = item.val();
|
||||
|
||||
if( !partialName.length ) {
|
||||
|
Loading…
Reference in New Issue
Block a user