You are viewing our Forum Archives. To view or take place in current topics click here.
Starting work on Notifly JS again
Posted:

Starting work on Notifly JS againPosted:

-Jordan-
  • TTG Addict
Status: Offline
Joined: Jul 12, 201013Year Member
Posts: 2,684
Reputation Power: 122
Status: Offline
Joined: Jul 12, 201013Year Member
Posts: 2,684
Reputation Power: 122
So a few months back I made a jQuery notifications plugin - Notifly. It worked and did so pretty well. However I kinda left it gathering dust. However now I'm starting work on it again so I thought I'd share this with you guys. A download for the current (1.0.2) version is available along with setup instructions in the readme.

If you want to contribute to the project then fork the repo, make your change and then send a pull request.

http://github.com/JordanAdams/Notifly
#2. Posted:
-1337-
  • TTG Contender
Status: Offline
Joined: Oct 12, 200914Year Member
Posts: 3,791
Reputation Power: 276
Status: Offline
Joined: Oct 12, 200914Year Member
Posts: 3,791
Reputation Power: 276
That is pretty awesome.

Mind if I use it on my site?
#3. Posted:
-Jordan-
  • TTG Addict
Status: Offline
Joined: Jul 12, 201013Year Member
Posts: 2,684
Reputation Power: 122
Status: Offline
Joined: Jul 12, 201013Year Member
Posts: 2,684
Reputation Power: 122
-1337- wrote That is pretty awesome.

Mind if I use it on my site?

Not at all. It's completely open source.
#4. Posted:
-1337-
  • TTG Contender
Status: Offline
Joined: Oct 12, 200914Year Member
Posts: 3,791
Reputation Power: 276
Status: Offline
Joined: Oct 12, 200914Year Member
Posts: 3,791
Reputation Power: 276
Hmmm, one question. Would I put this in my current php file or create a new one?
#5. Posted:
Napa
  • Prospect
Status: Offline
Joined: May 28, 201113Year Member
Posts: 632
Reputation Power: 23
Status: Offline
Joined: May 28, 201113Year Member
Posts: 632
Reputation Power: 23
i want a sword................
#6. Posted:
-Jordan-
  • TTG Addict
Status: Offline
Joined: Jul 12, 201013Year Member
Posts: 2,684
Reputation Power: 122
Status: Offline
Joined: Jul 12, 201013Year Member
Posts: 2,684
Reputation Power: 122
-1337- wrote Hmmm, one question. Would I put this in my current php file or create a new one?

You'd include it in whatever files you want to use it in.
#7. Posted:
-1337-
  • TTG Contender
Status: Offline
Joined: Oct 12, 200914Year Member
Posts: 3,791
Reputation Power: 276
Status: Offline
Joined: Oct 12, 200914Year Member
Posts: 3,791
Reputation Power: 276
Meh, I'm shit with php mind helping me? or giving a mini tut?

Thanks in advance if you can.
#8. Posted:
-Jordan-
  • TTG Addict
Status: Offline
Joined: Jul 12, 201013Year Member
Posts: 2,684
Reputation Power: 122
Status: Offline
Joined: Jul 12, 201013Year Member
Posts: 2,684
Reputation Power: 122
-1337- wrote Meh, I'm **** with php mind helping me? or giving a mini tut?

Thanks in advance if you can.


There is a little setup guide on the github repo. However if you send me your php file I'll show you where everything will go.
#9. Posted:
-1337-
  • TTG Contender
Status: Offline
Joined: Oct 12, 200914Year Member
Posts: 3,791
Reputation Power: 276
Status: Offline
Joined: Oct 12, 200914Year Member
Posts: 3,791
Reputation Power: 276
I sent you a PM with the code from my index file
#10. Posted:
-Jordan-
  • TTG Addict
Status: Offline
Joined: Jul 12, 201013Year Member
Posts: 2,684
Reputation Power: 122
Status: Offline
Joined: Jul 12, 201013Year Member
Posts: 2,684
Reputation Power: 122
Updated with "corner" option to allow for specifying which corner to show the notification in.

Values:

tl => top-left
tr => top-right
bl => bottom-left
br => bottom-right {Default}


Example:

$('#some_element').click(function() {

    $.notifly({

        "header"    : "Header",
        "content"   : "Some content",
        "corner"    : "tr",

    });

});
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.