File tree Expand file tree Collapse file tree
src/Presentation/SmartStore.Web Expand file tree Collapse file tree Original file line number Diff line number Diff line change 254254}
255255
256256.terms-of-service.alert {
257- padding-bottom : 4px !important ;
258- a .read {
259- font-weight : bold ;
260- }
257+ padding-bottom : 4px !important ;
258+
259+ a .read {
260+ font-weight : bold ;
261+ & :hover {
262+ cursor : pointer ;
263+ }
264+ }
261265}
262266
263267
Original file line number Diff line number Diff line change 3434 < div class = " terms-of-service alert alert-info" >
3535 < script type = " text/javascript" >
3636 $(document ).ready (function () {
37- $(" #terms-of-service-trigger" ).click (function () {
37+ $(" #terms-of-service-trigger" ).click (function (event ) {
38+ event .preventDefault ();
3839 $(" #terms-of-service-modal .modal-body" ).html ('<iframe id="iframe-terms-of-service" src="@Url.RouteUrl("TopicPopup", new { SystemName = "conditionsofuse" })" width="800" scrolling="yes" style="min-height:400px" frameBorder="0" />' );
3940 });
40- $(" #disclaimer-trigger" ).click (function () {
41+ $(" #disclaimer-trigger" ).click (function (event ) {
42+ event .preventDefault ();
4143 $(" #terms-of-service-modal .modal-body" ).html ('<iframe id="iframe-terms-of-service" src="@Url.RouteUrl("TopicPopup", new { SystemName = "disclaimer" })" width="800" scrolling="yes" style="min-height:400px" frameBorder="0" />' );
4244 });
4345 });
You can’t perform that action at this time.
0 commit comments